The tests/*.test files shouldn't explicitly exit, because they are sourced in scripts/test.sh. No tests after sed were being run.
From 6ef2afe0e206e71b734541db6c417753f8f84e63 Mon Sep 17 00:00:00 2001 From: Andy Chu <[email protected]> Date: Thu, 17 Mar 2016 00:06:32 -0700 Subject: [PATCH] Fix bug where all tests aren't being run with 'make test'.
The tests/*.test files shouldn't explicitly exit, because they are sourced in scripts/test.sh. No tests after sed were being run. --- tests/sed.test | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/sed.test b/tests/sed.test index ec06baa..b308b69 100755 --- a/tests/sed.test +++ b/tests/sed.test @@ -151,6 +151,3 @@ testing "bonus backslashes" \ "sed -e 'a \l \x\' -e \"\$(echo -e 'ab\\\nc')\"" \ "hello\nl x\nab\nc\n" "" "hello\n" # -i with $ last line test - - -exit $FAILCOUNT -- 1.9.1
_______________________________________________ Toybox mailing list [email protected] http://lists.landley.net/listinfo.cgi/toybox-landley.net
