From c198e21c168abbb70d5e70791b3e4ca4cecc9956 Mon Sep 17 00:00:00 2001 From: Richard Hansen Date: Tue, 30 Jun 2020 19:36:44 -0400 Subject: [PATCH] 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. --- CONTRIBUTING.md | 2 +- ChangeLog.md | 2 +- README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7418506..347cd1d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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: diff --git a/ChangeLog.md b/ChangeLog.md index 4822083..ccd0951 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -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. diff --git a/README.md b/README.md index 0732049..df5fe6b 100644 --- a/README.md +++ b/README.md @@ -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 ```