summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortomsou <soth@intracom-telecom.com>2017-05-09 12:54:47 +0000
committertomsou <soth@intracom-telecom.com>2017-05-09 13:02:44 +0000
commitdc24635f0e1cb103c333f8b614a4801341b4f877 (patch)
tree64538e3b18f41762a83e2497b56f6012a475c216
parent352fe7c1a6206478f53b053e9f06ae57d6635c16 (diff)
Fix the zrpcd running check within testcase3
Check specifically the "running" state of the zrpcd service JIRA: SDNVPN-150 Change-Id: I1b63f25dfab5fd4507cc219fb1c21291064a8bab Signed-off-by: tomsou <soth@intracom-telecom.com>
-rw-r--r--sdnvpn/test/functest/testcase_3.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sdnvpn/test/functest/testcase_3.py b/sdnvpn/test/functest/testcase_3.py
index 0f22f53..b9ea74a 100644
--- a/sdnvpn/test/functest/testcase_3.py
+++ b/sdnvpn/test/functest/testcase_3.py
@@ -77,7 +77,7 @@ def main():
logger.info("Checking if zrpcd is "
"running on the controller node")
- cmd = "systemctl status zrpcd"
+ cmd = "systemctl status zrpcd |grep -i running"
output = controller.run_cmd(cmd)
msg = ("zrpcd is running")