diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/test_quic.py | 2 | ||||
-rw-r--r-- | test/test_vapi.py | 4 | ||||
-rw-r--r-- | test/test_vcl.py | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/test/test_quic.py b/test/test_quic.py index 1257f4e2b0a..ea367c0ba14 100644 --- a/test/test_quic.py +++ b/test/test_quic.py @@ -19,7 +19,7 @@ class QUICAppWorker(Worker): testcase, env=None, *args, **kwargs): if env is None: env = {} - app = "%s/vpp/bin/%s" % (build_dir, appname) + app = "%s/bin/%s" % (build_dir, appname) self.args = [app] + executable_args self.role = role self.wait_for_gdb = 'wait-for-gdb' diff --git a/test/test_vapi.py b/test/test_vapi.py index 9b4cad090a0..106c84a9bad 100644 --- a/test/test_vapi.py +++ b/test/test_vapi.py @@ -24,7 +24,7 @@ class VAPITestCase(VppTestCase): build_dir = os.getenv(var, None) self.assertIsNotNone(build_dir, "Environment variable `%s' not set" % var) - executable = f"{build_dir}/vpp/bin/vapi_c_test" + executable = f"{build_dir}/bin/vapi_c_test" worker = Worker([executable, "vapi client", self.get_api_segment_prefix()], self.logger) worker.start() @@ -53,7 +53,7 @@ class VAPITestCase(VppTestCase): build_dir = os.getenv(var, None) self.assertIsNotNone(build_dir, "Environment variable `%s' not set" % var) - executable = f"{build_dir}/vpp/bin/vapi_cpp_test" + executable = f"{build_dir}/bin/vapi_cpp_test" worker = Worker([executable, "vapi client", self.get_api_segment_prefix()], self.logger) worker.start() 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) |