diff options
author | Jens Axboe <axboe@kernel.dk> | 2020-05-23 16:38:59 -0600 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2020-05-23 16:38:59 -0600 |
commit | 87d9bc02cf4b88538a9ab6bfb5ad3e2d632d1134 (patch) | |
tree | 32e7865cd94c5652739056ddb53f719a293f3815 | |
parent | 4339af0bad63a05115876945fe08e3c2bf8837e3 (diff) | |
download | liburing-87d9bc02cf4b88538a9ab6bfb5ad3e2d632d1134.tar.gz liburing-87d9bc02cf4b88538a9ab6bfb5ad3e2d632d1134.tar.bz2 |
test/runtests.sh: include argument for failed test concatenation
Signed-off-by: Jens Axboe <axboe@kernel.dk>
-rwxr-xr-x | test/runtests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/runtests.sh b/test/runtests.sh index 0aebac0..65d0ac8 100755 --- a/test/runtests.sh +++ b/test/runtests.sh @@ -39,7 +39,7 @@ run_test() echo "Test $T timed out (may not be a failure)" elif [ "${r}" -ne 0 ]; then echo "Test $T failed with ret ${r}" - FAILED="$FAILED $T" + FAILED="$FAILED <$T $D>" RET=1 elif [ ! -z "$D" ]; then sleep .1 |