diff options
author | Manuel Buil <manuel.buil@ericsson.com> | 2016-10-24 13:43:39 +0200 |
---|---|---|
committer | Manuel Buil <manuel.buil@ericsson.com> | 2016-10-24 13:48:02 +0200 |
commit | 9d0cdbfd04bc35437b21a2042fb796fcabafe0a8 (patch) | |
tree | fb17e1f62c152eaed0513d5ea2810736b39ab80e /testcases/features/sfc | |
parent | 573953d3fda65c03ece01b1ee70516599c7ae831 (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>
Diffstat (limited to 'testcases/features/sfc')
-rwxr-xr-x | testcases/features/sfc/sfc_colorado1.py | 3 |
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) |