From cbba6157487f27c28355027059396a73615e1b73 Mon Sep 17 00:00:00 2001 From: Uli Schlachter Date: Wed, 5 Aug 2015 17:58:10 +0200 Subject: [PATCH] tests/run.sh: Show full error messages If an error occurs during startup, tail might not show the full error message. Signed-off-by: Uli Schlachter --- tests/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run.sh b/tests/run.sh index e2dcaf69e..4983f8c1d 100755 --- a/tests/run.sh +++ b/tests/run.sh @@ -153,7 +153,7 @@ for f in $tests; do cat $f | DISPLAY=$D "$AWESOME_CLIENT" 2>&1 # Tail the log and quit, when awesome quits. - tail -f --pid $awesome_pid $awesome_log + tail -n 100000 -f --pid $awesome_pid $awesome_log if grep -q -E '^Error|assertion failed' $awesome_log; then echo "===> ERROR running $f! <==="