aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManuel Buil <manuel.buil@ericsson.com>2016-10-24 13:43:39 +0200
committerManuel Buil <manuel.buil@ericsson.com>2016-10-24 13:48:02 +0200
commit9d0cdbfd04bc35437b21a2042fb796fcabafe0a8 (patch)
treefb17e1f62c152eaed0513d5ea2810736b39ab80e
parent573953d3fda65c03ece01b1ee70516599c7ae831 (diff)
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 <manuel.buil@ericsson.com>
-rwxr-xr-xtestcases/features/sfc/sfc_colorado1.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/testcases/features/sfc/sfc_colorado1.py b/testcases/features/sfc/sfc_colorado1.py
index 20bfa2e44..1a6b9b8d2 100755
--- a/testcases/features/sfc/sfc_colorado1.py
+++ b/testcases/features/sfc/sfc_colorado1.py
@@ -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)