From 6268dedd6a5a91e39e1ac15d73769a0f7a73c212 Mon Sep 17 00:00:00 2001 From: grev <grev> Date: Wed, 21 Nov 2007 10:24:03 +0000 Subject: [PATCH] b=13974 i=Nathan test_43: change exec to multiop --- lustre/tests/sanity.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lustre/tests/sanity.sh b/lustre/tests/sanity.sh index 531596854d..22c207529f 100644 --- a/lustre/tests/sanity.sh +++ b/lustre/tests/sanity.sh @@ -1777,9 +1777,13 @@ run_test 42d "test complete truncate of file with cached dirty data" test_43() { cp -p /bin/ls $DIR/$tdir/$tfile - exec 100>> $DIR/$tdir/$tfile + multiop $DIR/$tdir/$tfile Ow_c & + pid=$! + # give multiop a chance to open + sleep 1 + $DIR/$tdir/$tfile && error || true - exec 100<&- + kill -USR1 $pid } run_test 43 "execution of file opened for write should return -ETXTBSY" -- GitLab