diff options
author | Jens Axboe <axboe@kernel.dk> | 2022-04-22 11:30:13 -0600 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-04-22 11:30:13 -0600 |
commit | 770efd14e8b17ccf23a45c95ecc9d38de4e17011 (patch) | |
tree | 01766f3833a17310d794759f9f8717b37668c33e | |
parent | 15e670a801cd9a4c0d4ce69099be9c163b7dfa66 (diff) | |
download | liburing-770efd14e8b17ccf23a45c95ecc9d38de4e17011.tar.gz liburing-770efd14e8b17ccf23a45c95ecc9d38de4e17011.tar.bz2 |
test/runtests-quiet.sh: fixup redirection
Signed-off-by: Jens Axboe <axboe@kernel.dk>
-rwxr-xr-x | test/runtests-quiet.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/runtests-quiet.sh b/test/runtests-quiet.sh index 63c46bd..2b84b9f 100755 --- a/test/runtests-quiet.sh +++ b/test/runtests-quiet.sh @@ -2,7 +2,7 @@ TESTS=("$@") RESULT_FILE=$(mktemp) -./runtests.sh "${TESTS[@]}" 2>&1 > "$RESULT_FILE" +{ ./runtests.sh "${TESTS[@]}"; } 2>&1 > "$RESULT_FILE" RET="$?" if [ "${RET}" -ne 0 ]; then cat "$RESULT_FILE" |