Bug fix for odl-sfc 25/23625/1
authorManuel Buil <manuel.buil@ericsson.com>
Mon, 24 Oct 2016 11:43:39 +0000 (13:43 +0200)
committerJose Lausuch <jose.lausuch@ericsson.com>
Mon, 24 Oct 2016 12:15:17 +0000 (12:15 +0000)
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>
(cherry picked from commit 9d0cdbfd04bc35437b21a2042fb796fcabafe0a8)

testcases/features/sfc/sfc_colorado1.py

index 4aef9d9..4c6d717 100755 (executable)
@@ -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)