X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Ftest_vcl.py;fp=test%2Ftest_vcl.py;h=fbbcd7b390dbb4f9727b12de6b45062971deb733;hb=3a1a86f87fd7d9c84ad4b12124c50fc3927ec6cf;hp=50d36d5317dd282b18507bcbb5f5944ebef6efa9;hpb=c0a2f0ec9b2574441dd3280fe6ae25de5491f7a0;p=vpp.git 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)