diff options
author | Adrian Villin <avillin@cisco.com> | 2024-06-19 06:20:00 -0400 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2024-06-19 16:14:12 +0000 |
commit | b4516bbccf1fb39fbe1e589296d1162e714862e9 (patch) | |
tree | 9eb2c585726fc23c3698d8760dab0cdbc5c5545f /extras/hs-test/hs_test.sh | |
parent | 05fbc3569c60c4b2420cb608756cf7ff582bbab2 (diff) |
hs-test: fix LDPreloadIperfVppTest
- fixed ldpreload path (debug build)
Type: test
Change-Id: Ib2ab58b32ffd87a78189464b599f7bbc4f05c175
Signed-off-by: Adrian Villin <avillin@cisco.com>
Diffstat (limited to 'extras/hs-test/hs_test.sh')
-rw-r--r-- | extras/hs-test/hs_test.sh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/extras/hs-test/hs_test.sh b/extras/hs-test/hs_test.sh index 28df3e565fe..4914e6055eb 100644 --- a/extras/hs-test/hs_test.sh +++ b/extras/hs-test/hs_test.sh @@ -7,6 +7,7 @@ single_test=0 persist_set=0 unconfigure_set=0 debug_set=0 +debug_build= ginkgo_args= for i in "$@" @@ -26,6 +27,12 @@ case "${i}" in debug_set=1 fi ;; + --debug_build=*) + debug_build="${i#*=}" + if [ "$debug_build" = "true" ]; then + args="$args -debug_build" + fi + ;; --verbose=*) verbose="${i#*=}" if [ "$verbose" = "true" ]; then @@ -80,7 +87,7 @@ if [ $persist_set -eq 1 ] && [ $unconfigure_set -eq 1 ]; then fi if [ $single_test -eq 0 ] && [ $debug_set -eq 1 ]; then - echo "VPP debug flag is not supperted while running all tests!" + echo "VPP debug flag is not supported while running all tests!" exit 1 fi |