From: tomsou Date: Tue, 9 May 2017 12:54:47 +0000 (+0000) Subject: Fix the zrpcd running check within testcase3 X-Git-Tag: danube.3.0~5 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=ce12119b306d0269bf9710e9a48b5ef5c3134f6c;p=sdnvpn.git 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 (cherry picked from commit dc24635f0e1cb103c333f8b614a4801341b4f877) --- 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")