From 3a1a86f87fd7d9c84ad4b12124c50fc3927ec6cf Mon Sep 17 00:00:00 2001 From: Klement Sekera Date: Tue, 25 May 2021 21:15:36 +0200 Subject: tests: make VPP_BUILD_DIR to point to correct dir Make VPP_BUILD_DIR hold the correct value and adjust paths where necessary. Type: refactor Change-Id: I5bc60666c04919956bf26badaf1ee1f1b188ef65 Signed-off-by: Klement Sekera --- test/test_vcl.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/test_vcl.py') 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) -- cgit 1.2.3-korg