Recommend VERBOSE=1 when running tests

This causes Automake to output a failed test's log so that you don't
have to look at the `.log` file yourself.
This commit is contained in:
Richard Hansen 2020-06-30 19:36:44 -04:00
parent 296576d57f
commit c198e21c16
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: To run the ddclient test suite:
1. Install GNU Autoconf and Automake 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: 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 * Added a build system to make it easier for distributions to package
ddclient: 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 * The `freedns` protocol (for https://freedns.afraid.org) now supports IPv6
addresses. addresses.

View file

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