From 8361fbd8ea9c6f29602982d31f67351f42f736b0 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sun, 4 Sep 2016 19:13:31 -0500 Subject: make test_cmp caused the make invocation to exit with an error because the last test exited with nonzero status and the script preserved it. In the current context, that's counterproductive. --- scripts/runtest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/runtest.sh b/scripts/runtest.sh index 13b82f14..6e94d945 100644 --- a/scripts/runtest.sh +++ b/scripts/runtest.sh @@ -109,7 +109,7 @@ testing() [ -n "$DEBUG" ] && set +x - return $RETVAL + return 0 } # Recursively grab an executable and all the libraries needed to run it. -- cgit v1.2.3