summaryrefslogtreecommitdiffstats
path: root/test/test_quic.py
diff options
context:
space:
mode:
authorKlement Sekera <ksekera@cisco.com>2021-05-25 21:15:36 +0200
committerOle Tr�an <otroan@employees.org>2022-01-31 14:58:19 +0000
commit3a1a86f87fd7d9c84ad4b12124c50fc3927ec6cf (patch)
tree3a4916b73fbbe7385f46558a27eaf1c427a106cf /test/test_quic.py
parentc0a2f0ec9b2574441dd3280fe6ae25de5491f7a0 (diff)
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 <ksekera@cisco.com>
Diffstat (limited to 'test/test_quic.py')
-rw-r--r--test/test_quic.py2
1 files changed, 1 insertions, 1 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'