From ea6aeef8bae01d934cb4aab6d915e0e3e8276df1 Mon Sep 17 00:00:00 2001 From: Andrew Gregory Date: Tue, 5 Nov 2013 08:50:44 -0500 Subject: Makefile.am: fix typo in LOG_DRIVER variable Self-executing tests were not being run through the tap log driver. This caused `make check` to ignore discrepancies between the expected number of tests and the actual number of tests. Also, fix some uncommented output from test scripts that could confuse TAP parsers. Signed-off-by: Andrew Gregory Signed-off-by: Allan McRae --- test/util/vercmptest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/util/vercmptest.sh') diff --git a/test/util/vercmptest.sh b/test/util/vercmptest.sh index a7fd8517..2d74b57f 100755 --- a/test/util/vercmptest.sh +++ b/test/util/vercmptest.sh @@ -25,7 +25,7 @@ run=0 failure=0 # use first arg as our binary if specified -if ! type -p "$bin"; then +if ! type -p "$bin" &>/dev/null; then echo "Bail out! vercmp binary ($bin) could not be located" exit 1 fi -- cgit v1.2.3-54-g00ecf