Bug fix for odl-sfc 23/23623/3
authorManuel Buil <manuel.buil@ericsson.com>
Mon, 24 Oct 2016 11:43:39 +0000 (13:43 +0200)
committerManuel Buil <manuel.buil@ericsson.com>
Mon, 24 Oct 2016 11:48:02 +0000 (13:48 +0200)
We forgot to add the path to the file, so the script was not executing

Change-Id: I3ec226f12e6db3402b20d9fcefaa0acecd5b3a70
Signed-off-by: Manuel Buil <manuel.buil@ericsson.com>
testcases/features/sfc/sfc_colorado1.py

index 20bfa2e..1a6b9b8 100755 (executable)
@@ -551,7 +551,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)