OSDN Git Service

make test_cmp caused the make invocation to exit with an error because the
authorRob Landley <rob@landley.net>
Mon, 5 Sep 2016 00:13:31 +0000 (19:13 -0500)
committerRob Landley <rob@landley.net>
Mon, 5 Sep 2016 00:13:31 +0000 (19:13 -0500)
last test exited with nonzero status and the script preserved it. In the
current context, that's counterproductive.

scripts/runtest.sh

index 13b82f1..6e94d94 100644 (file)
@@ -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.