From 801ab8a22e23785a68942e4dee14d459a9ecd955 Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Thu, 20 Feb 2014 12:22:14 +1100 Subject: [PATCH] don't error on rpz percentage checks as they fail inconsistently on virtual machines (cherry picked from commit 86a85a3bbd3d4580982b2c02d9b4837bc6c2fae5) --- bin/tests/system/rpz/tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/tests/system/rpz/tests.sh b/bin/tests/system/rpz/tests.sh index 34365949ce..ebc37a372a 100644 --- a/bin/tests/system/rpz/tests.sh +++ b/bin/tests/system/rpz/tests.sh @@ -477,11 +477,11 @@ if test -n "$QPERF"; then MIN_PERCENT=30 if test "$PERCENT" -lt $MIN_PERCENT; then - setret "I:$RPZ qps with rpz or $PERCENT% is below $MIN_PERCENT% of $NORPZ qps" + echo "I:$RPZ qps with rpz or $PERCENT% is below $MIN_PERCENT% of $NORPZ qps" fi if test "$PERCENT" -ge 100; then - setret "I:$RPZ qps with RPZ or $PERCENT% of $NORPZ qps without RPZ is too high" + echo "I:$RPZ qps with RPZ or $PERCENT% of $NORPZ qps without RPZ is too high" fi ckstats $ns5 ns5 203