diff options
author | Manuel Buil <manuel.buil@ericsson.com> | 2016-10-24 13:43:39 +0200 |
---|---|---|
committer | Jose Lausuch <jose.lausuch@ericsson.com> | 2016-10-24 12:15:17 +0000 |
commit | d080e9e9883f253063fa2210a223b06b28df70de (patch) | |
tree | 8061fe9c5d16fb9af2f82a870eafab16eaf22dee | |
parent | ff582b79220b214d4ef530144c1b66084a832261 (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>
(cherry picked from commit 9d0cdbfd04bc35437b21a2042fb796fcabafe0a8)
-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 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) |