From d080e9e9883f253063fa2210a223b06b28df70de Mon Sep 17 00:00:00 2001 From: Manuel Buil Date: Mon, 24 Oct 2016 13:43:39 +0200 Subject: Bug fix for odl-sfc We forgot to add the path to the file, so the script was not executing Change-Id: I3ec226f12e6db3402b20d9fcefaa0acecd5b3a70 Signed-off-by: Manuel Buil (cherry picked from commit 9d0cdbfd04bc35437b21a2042fb796fcabafe0a8) --- testcases/features/sfc/sfc_colorado1.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/testcases/features/sfc/sfc_colorado1.py b/testcases/features/sfc/sfc_colorado1.py index 4aef9d933..4c6d717a4 100755 --- a/testcases/features/sfc/sfc_colorado1.py +++ b/testcases/features/sfc/sfc_colorado1.py @@ -572,7 +572,8 @@ def main(): break else: logger.info("Iterating again!") - delete = ("bash delete.sh") + delete = "bash %s/testcases/features/sfc/delete.sh" % \ + (FUNCTEST_REPO) try: subprocess.call(delete, shell=True, stderr=subprocess.PIPE) time.sleep(10) -- cgit 1.2.3-korg