diff options
author | Andy Chu <andychu@google.com> | 2016-03-17 00:06:32 -0700 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2016-03-17 14:13:30 -0500 |
commit | 516f3d620fd1b8f0813b48c1154fc60d98c17be8 (patch) | |
tree | 86a5ed9a716ec26254ee529406339afc50efae05 /tests | |
parent | 438fa71547d791c5bee3201b42b16415627cdb45 (diff) | |
download | toybox-516f3d620fd1b8f0813b48c1154fc60d98c17be8.tar.gz |
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.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/sed.test | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/sed.test b/tests/sed.test index ec06baae..b308b699 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 |