From ead15fa40e1d7556d986104c2112db0791b66d77 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Mon, 8 Jul 2019 16:29:44 -0600 Subject: Make runtests.sh output test to dmesg Can be useful to figure out which test crashed. Signed-off-by: Jens Axboe --- test/runtests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runtests.sh b/test/runtests.sh index 8307eac..6e5391a 100755 --- a/test/runtests.sh +++ b/test/runtests.sh @@ -7,7 +7,7 @@ TIMEOUT=10 FAILED="" for t in $TESTS; do - echo Running test $t + echo Running test $t | tee > /dev/kmsg timeout -s INT $TIMEOUT ./$t r=$? if [ "${r}" -eq 124 ]; then -- cgit