diff options
author | 2016-12-13 16:33:25 +0200 | |
---|---|---|
committer | 2016-12-14 13:30:25 +0200 | |
commit | feda9e928ce11e2e4518cf07e794801288e993ba (patch) | |
tree | be1e2e49c44cac7a85effb62b0a7a676ab16578a /scripts | |
parent | 511a6dacda5cf45c9194a4fe895de6fe40e7b06a (diff) |
Small fix left out in 6c31c0534acf57fc3e0e26fe964bbc67d9d7d63c
Signed-off-by: Ido Barnea <ibarnea@cisco.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/automation/regression/stateful_tests/trex_general_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/automation/regression/stateful_tests/trex_general_test.py b/scripts/automation/regression/stateful_tests/trex_general_test.py index 5c1649e7..fe38ed34 100755 --- a/scripts/automation/regression/stateful_tests/trex_general_test.py +++ b/scripts/automation/regression/stateful_tests/trex_general_test.py @@ -270,7 +270,7 @@ class CTRexGeneral_Test(unittest.TestCase): if not ports_names: raise AbnormalResultError('Could not find ports info in TRex results, path: trex-latecny-v2.data.port-*') for port_name in ports_names: - path = 'trex-latecny-v2.data.%s.hist.cont' % port_name + path = 'trex-latecny-v2.data.%s.hist.cnt' % port_name lat_count = trex_res.get_last_value(path) if lat_count == 0: self.fail('LatencyError: Number of latency packets received on %s is 0' % port_name) |