From f7b585e7220e2b1c510ac7778f31f3ef99ac6c30 Mon Sep 17 00:00:00 2001 From: Nathan Rutman Date: Mon, 9 Aug 2010 21:49:22 +0400 Subject: [PATCH 1/1] b=23408 disable failure temporarily while we collect performance stats i=vitaly --- lustre/tests/ost-pools.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lustre/tests/ost-pools.sh b/lustre/tests/ost-pools.sh index 8357fd4..6b48a2a 100644 --- a/lustre/tests/ost-pools.sh +++ b/lustre/tests/ost-pools.sh @@ -988,16 +988,17 @@ test_18() { # Set this high until we establish a baseline for what the degradation # is / should be - max=15 + max=30 diff=$(echo "scale=2; ($time2 - $time1) * 100 / $time1" | bc) echo "No pool to wide pool: $diff %." deg=$(echo "scale=2; $diff > $max" | bc) - [ "$deg" == "1" ] && error "Degradation with wide pool is $diff % (> $max %)" + [ "$deg" == "1" ] && error_ignore 23408 "Degradation with wide pool is $diff % (> $max %)" + max=15 diff=$(echo "scale=2; ($time3 - $time1) * 100 / $time1" | bc) echo "No pool to missing pool: $diff %." deg=$(echo "scale=2; $diff > $max" | bc) - [ "$deg" == "1" ] && error "Degradation with missing pool is $diff % (> $max %)" + [ "$deg" == "1" ] && error_ignore 23408 "Degradation with missing pool is $diff % (> $max %)" return 0 } -- 1.8.3.1