diff options
author | Rob Landley <rob@landley.net> | 2020-05-26 05:23:58 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2020-05-26 05:23:58 -0500 |
commit | 6b6436c848035abfff92a86b00305847bc6c0b9d (patch) | |
tree | 2f41aad9c2410858e30fac21a9b10b03257573ce /scripts | |
parent | bc6ce6628c2517aa419b5551b8d378da794b84f2 (diff) | |
download | toybox-6b6436c848035abfff92a86b00305847bc6c0b9d.tar.gz |
Fix syntax checking for "if true; then echo hello | fi", fix some tests,
slightly more elaborate debug output.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/test.sh b/scripts/test.sh index ede105ea..20f76d09 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -4,7 +4,7 @@ source scripts/runtest.sh source scripts/portability.sh TOPDIR="$PWD" -FILES="$PWD"/tests/files +export FILES="$PWD"/tests/files trap 'kill $(jobs -p) 2>/dev/null; exit 1' INT |