From ad0966f6296812a10eb6c8ba6f6725f4a3450ec6 Mon Sep 17 00:00:00 2001 From: Matej Klotton Date: Fri, 20 May 2016 10:29:41 +0200 Subject: Add test VPP sends DHCP REQUEST after OFFER -JIRA: CSIT-101 Change-Id: I9b92920f8ce324c447cb44ed4cd8d7f8c9c9ed88 Signed-off-by: Matej Klotton --- resources/libraries/python/TrafficScriptExecutor.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'resources/libraries/python/TrafficScriptExecutor.py') 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") -- cgit 1.2.3-korg