From 20e0f133659e3bde63951695b8abf022d3c33e51 Mon Sep 17 00:00:00 2001 From: "robert.read" Date: Tue, 9 Jun 2009 22:34:54 +0000 Subject: [PATCH] Branch HEAD b=19577 Change error_exit calls to error so the rest of the tests can run. --- lustre/tests/sanity-quota.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lustre/tests/sanity-quota.sh b/lustre/tests/sanity-quota.sh index f45fad5..007bc52 100644 --- a/lustre/tests/sanity-quota.sh +++ b/lustre/tests/sanity-quota.sh @@ -301,7 +301,7 @@ test_1_sub() { etime=`date +%s` delta=$((etime - stime)) rate=$((BLK_SZ * LIMIT / 2 / delta / 1024)) - [ $rate -gt 1024 ] || error_exit "SLOW IO for $TSTUSR (user): $rate KB/sec" + [ $rate -gt 1024 ] || error "SLOW IO for $TSTUSR (user): $rate KB/sec" log " Done" log " Write out of block quota ..." # this time maybe cache write, ignore it's failure @@ -337,7 +337,7 @@ test_1_sub() { etime=`date +%s` delta=$((etime - stime)) rate=$((BLK_SZ * LIMIT / 2 / delta / 1024)) - [ $rate -gt 1024 ] || error_exit "SLOW IO for $TSTUSR (group): $rate KB/sec" + [ $rate -gt 1024 ] || error "SLOW IO for $TSTUSR (group): $rate KB/sec" log " Done" log " Write out of block quota ..." # this time maybe cache write, ignore it's failure -- 1.8.3.1