diff options
author | Rob Landley <rob@landley.net> | 2016-03-23 03:44:51 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2016-03-23 03:44:51 -0500 |
commit | 1ffa7f45eb4fe3b73f94e69c929ad311d9c44b81 (patch) | |
tree | 2e4607cd74dfeb942fa65bf7c5cf23d07dc1d066 /scripts/test.sh | |
parent | b52f642472af932e382342c4faf30643b91f6be1 (diff) | |
download | toybox-1ffa7f45eb4fe3b73f94e69c929ad311d9c44b81.tar.gz |
Fix bzcat.test (as noted by Andy Chu), wean tests off $TOPDIR and supply $FILES
instead, move tests/blkid into tests/files/blkid.
Diffstat (limited to 'scripts/test.sh')
-rwxr-xr-x | scripts/test.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/test.sh b/scripts/test.sh index 0c3d7aaf..1337c529 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -1,6 +1,7 @@ #!/bin/bash -[ -z "$TOPDIR" ] && TOPDIR="$(pwd)" +TOPDIR="$PWD" +FILES="$PWD"/tests/files trap 'kill $(jobs -p) 2>/dev/null; exit 1' INT |