summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorYaroslav Brustinov <ybrustin@cisco.com>2016-04-28 05:18:58 +0300
committerYaroslav Brustinov <ybrustin@cisco.com>2016-04-28 05:18:58 +0300
commit01f0f25ca3072a5f671c5dfbaae454a94414c64d (patch)
tree45e79ab1f5a1c2105bfc1883960c6ac67ffd2a9a /scripts
parentd5bf86e99c2d6c08ca972d9350b03c8d14a1b89e (diff)
regression: remove print from stl benchmark
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/automation/regression/stateless_tests/stl_benchmark_test.py1
1 files changed, 0 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 68cb8ff6..d4cf4a05 100755
--- a/scripts/automation/regression/stateless_tests/stl_benchmark_test.py
+++ b/scripts/automation/regression/stateless_tests/stl_benchmark_test.py
@@ -27,7 +27,6 @@ class STLBenchmark_Test(CStlGeneral_Test):
for i in range(timeout + 1):
stats = self.stl_trex.get_stats()
cpu_utils.append(stats['global']['cpu_util'])
- print stats['global']['cpu_util']
if i > stabilize and min(cpu_utils) > max(cpu_utils) * 0.98 - 0.1:
break
sleep(0.5)