From 07b5e50b04e03cce21daffd7f7a8d9192fa6cb19 Mon Sep 17 00:00:00 2001 From: grev Date: Thu, 11 Oct 2007 21:33:14 +0000 Subject: [PATCH] b=13599 i=Nathan i=Scjody use multiop instead of exec --- lustre/tests/replay-single.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lustre/tests/replay-single.sh b/lustre/tests/replay-single.sh index 45c86e6..1124d69 100755 --- a/lustre/tests/replay-single.sh +++ b/lustre/tests/replay-single.sh @@ -485,9 +485,10 @@ test_20b() { # bug 10480 run_test 20b "write, unlink, eviction, replay, (test mds_cleanup_orphans)" test_20c() { # bug 10480 - dd if=/dev/zero of=$DIR/$tfile bs=4k count=10000 - - exec 100< $DIR/$tfile + multiop $DIR/$tfile Ow_c & + pid=$! + # give multiop a chance to open + sleep 1 ls -la $DIR/$tfile @@ -495,8 +496,7 @@ test_20c() { # bug 10480 df -P $DIR || df -P $DIR || true # reconnect - exec 100<&- - + kill -USR1 $pid test -s $DIR/$tfile || error "File was truncated" return 0 -- 1.8.3.1