aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/python/TrafficScriptExecutor.py
diff options
context:
space:
mode:
authorMatej Klotton <mklotton@cisco.com>2016-05-20 10:29:41 +0200
committerMatej Klotton <mklotton@cisco.com>2016-06-06 12:12:00 +0200
commitad0966f6296812a10eb6c8ba6f6725f4a3450ec6 (patch)
tree48f0d5b6bcd78ce5b702bf5e8e9e9b7fd7d609d8 /resources/libraries/python/TrafficScriptExecutor.py
parentb7b9a6f73347fba29060f3c2a2abfc4ea411de68 (diff)
Add test VPP sends DHCP REQUEST after OFFER
-JIRA: CSIT-101 Change-Id: I9b92920f8ce324c447cb44ed4cd8d7f8c9c9ed88 Signed-off-by: Matej Klotton <mklotton@cisco.com>
Diffstat (limited to 'resources/libraries/python/TrafficScriptExecutor.py')
-rw-r--r--resources/libraries/python/TrafficScriptExecutor.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/resources/libraries/python/TrafficScriptExecutor.py b/resources/libraries/python/TrafficScriptExecutor.py
index 108b2b9815..e7b851e733 100644
--- a/resources/libraries/python/TrafficScriptExecutor.py
+++ b/resources/libraries/python/TrafficScriptExecutor.py
@@ -67,6 +67,8 @@ class TrafficScriptExecutor(object):
if ret_code != 0:
if "RuntimeError: ICMP echo Rx timeout" in stderr:
raise Exception("ICMP echo Rx timeout")
+ elif "RuntimeError: DHCP REQUEST Rx timeout" in stderr:
+ raise RuntimeError("DHCP REQUEST Rx timeout")
else:
raise Exception("Traffic script execution failed")