From 4f12ea5a4ecd803060993bdde86a0fe4f99c72d1 Mon Sep 17 00:00:00 2001 From: Stefan Behrens Date: Thu, 8 Mar 2012 16:27:16 -0600 Subject: [PATCH] before test execution, print test number to syslog When the xfstests are executed in a batch (like "check 001-299") and produce syslog output, it is helpful to know which test was causing the output. Therefore each time a test is started, a syslog message is generated that contains the number of the xfstest. Signed-off-by: Stefan Behrens Reviewed-by: Dave Chinner Signed-off-by: Eric Sandeen --- check | 1 + 1 file changed, 1 insertion(+) diff --git a/check b/check index f7920097..a4af0f68 100755 --- a/check +++ b/check @@ -241,6 +241,7 @@ do start=`_wallclock` $timestamp && echo -n " ["`date "+%T"`"]" [ ! -x $seq ] && chmod u+x $seq # ensure we can run it + [ -x /usr/bin/logger ] && /usr/bin/logger "run xfstest $seq" ./$seq >$tmp.rawout 2>&1 sts=$? $timestamp && _timestamp -- 2.47.3