Merge pull request #215 from rhansen/verbose-tests

Recommend `VERBOSE=1` when running tests
This commit is contained in:
Sandro 2020-07-01 01:42:51 +02:00 committed by GitHub
commit ef566064d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -53,7 +53,7 @@ Always add tests for your changes when feasible.
To run the ddclient test suite:
1. Install GNU Autoconf and Automake
2. Run: `./autogen && ./configure && make check`
2. Run: `./autogen && ./configure && make VERBOSE=1 check`
To add a new test script:

View file

@ -12,7 +12,7 @@ repository history](https://github.com/ddclient/ddclient/commits/master).
* Added a build system to make it easier for distributions to package
ddclient:
./autogen && ./configure && make && make check && make install
./autogen && ./configure && make && make VERBOSE=1 check && make install
* The `freedns` protocol (for https://freedns.afraid.org) now supports IPv6
addresses.

View file

@ -81,7 +81,7 @@ See https://github.com/ddclient/ddclient/releases
--sysconfdir=/etc/ddclient \
--localstatedir=/var
make
make check
make VERBOSE=1 check
sudo make install
```