summaryrefslogtreecommitdiffstats
path: root/test/test_vcl.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_vcl.py')
-rw-r--r--test/test_vcl.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_vcl.py b/test/test_vcl.py
index 50d36d5317d..fbbcd7b390d 100644
--- a/test/test_vcl.py
+++ b/test/test_vcl.py
@@ -52,10 +52,10 @@ class VCLAppWorker(Worker):
app = appname
env.update({'LD_PRELOAD': vcl_ldpreload_so})
elif "sock" in appname:
- app = "%s/vpp/bin/%s" % (build_dir, appname)
+ app = "%s/bin/%s" % (build_dir, appname)
env.update({'LD_PRELOAD': vcl_ldpreload_so})
else:
- app = "%s/vpp/bin/%s" % (build_dir, appname)
+ app = "%s/bin/%s" % (build_dir, appname)
self.args = [app] + executable_args
super(VCLAppWorker, self).__init__(self.args, logger, env,
*args, **kwargs)