commit | 5d9527bbeaf1f4592cd12a94f350e65c04b48d93 | [log] [tgz] |
---|---|---|
author | You Wang <you@opennetworking.org> | Tue May 29 17:08:54 2018 -0700 |
committer | You Wang <you@opennetworking.org> | Tue May 29 17:09:50 2018 -0700 |
tree | 95e0ebb32f3643373f440c396bfe8b3c829a3c6d | |
parent | c8ecd6c7d1c852212933660c8c5b7ec1f1821241 [diff] |
Assert that dst host exists when using t3-simple Change-Id: Ib856218f440e808ba999202c7295b375853609fe
diff --git a/TestON/drivers/common/cli/onosclidriver.py b/TestON/drivers/common/cli/onosclidriver.py index dee2be5..c341d59 100755 --- a/TestON/drivers/common/cli/onosclidriver.py +++ b/TestON/drivers/common/cli/onosclidriver.py
@@ -6494,6 +6494,8 @@ if sHost and dHost: break assert sHost, "Not able to find host with IP {}".format( sAddr ) + if simple: + assert dHost, "Not able to find host with IP {}".format( dAddr ) cmdStr = "t3-troubleshoot" if simple: cmdStr += "-simple"