Whamcloud - gitweb
LU-8387 test: fix check in sanity test_129
[fs/lustre-release.git] / lustre / tests / runmultiop_bg_pause
old mode 100644 (file)
new mode 100755 (executable)
index 823ebdd..f309ab3
@@ -5,7 +5,14 @@
 
 PTLDEBUG=${PTLDEBUG:--1}
 LUSTRE=${LUSTRE:-`dirname $0`/..}
+MULTIOP=${MULTIOP:-multiop}
 . $LUSTRE/tests/test-framework.sh
 
+TMP=${TMP:-/tmp}
+MULTIOP_PID_FILE=${MULTIOP_PID_FILE:-$TMP/multiop_bg.pid}
+rm -f $MULTIOP_PID_FILE
+
 multiop_bg_pause $*
-exit $?
+rc=$?
+[ "$rc" = 0 ] && echo $! > $MULTIOP_PID_FILE
+exit $rc