summaryrefslogtreecommitdiffstats
path: root/scripts/automation/regression
diff options
context:
space:
mode:
authorYaroslav Brustinov <ybrustin@cisco.com>2016-04-28 04:16:33 +0300
committerYaroslav Brustinov <ybrustin@cisco.com>2016-04-28 04:16:33 +0300
commitd5bf86e99c2d6c08ca972d9350b03c8d14a1b89e (patch)
treeb7f85761ac3623b4c1aea4451504a4bb19f94d5a /scripts/automation/regression
parent0b83b5e12f9db7d5590434844767959c0154aa9c (diff)
regression: lower demand on number of output packets at stateless benchmark
Diffstat (limited to 'scripts/automation/regression')
-rwxr-xr-xscripts/automation/regression/stateless_tests/stl_benchmark_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/automation/regression/stateless_tests/stl_benchmark_test.py b/scripts/automation/regression/stateless_tests/stl_benchmark_test.py
index 097006e0..68cb8ff6 100755
--- a/scripts/automation/regression/stateless_tests/stl_benchmark_test.py
+++ b/scripts/automation/regression/stateless_tests/stl_benchmark_test.py
@@ -34,7 +34,7 @@ class STLBenchmark_Test(CStlGeneral_Test):
if i == timeout:
raise Exception('Timeout on waiting for stabilization, CPU util values: %s' % cpu_utils)
- if stats[0]['opackets'] < 10000 or stats[1]['opackets'] < 10000:
+ if stats[0]['opackets'] < 1000 or stats[1]['opackets'] < 1000:
raise Exception('Too few opackets, port0: %s, port1: %s' % (stats[0]['opackets'], stats[1]['opackets']))
if stats['global']['queue_full'] > 100000:
raise Exception('Too much queue_full: %s' % stats['global']['queue_full'])