diff options
author | tomsou <soth@intracom-telecom.com> | 2017-05-09 12:54:47 +0000 |
---|---|---|
committer | Nikolas Hermanns <nikolas.hermanns@ericsson.com> | 2017-05-11 09:50:57 +0000 |
commit | ce12119b306d0269bf9710e9a48b5ef5c3134f6c (patch) | |
tree | 71c0ad1ff821b25e3bccfe8d40256a0e856f1385 | |
parent | bf201a51b5d07bfd73d62070e09c6e7639001609 (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>
(cherry picked from commit dc24635f0e1cb103c333f8b614a4801341b4f877)
-rw-r--r-- | sdnvpn/test/functest/testcase_3.py | 2 |
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") |