summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatus Fabian <matfabia@cisco.com>2024-11-13 18:23:39 +0100
committerDave Wallace <dwallacelf@gmail.com>2024-11-14 18:25:31 +0000
commit1fe2501702c90ff3253dccfe72c34de21a41a9a8 (patch)
tree709e5ea6b525d6c453982da5487d33b4704b7aee
parent3b75570a060d671ef9364599839a0f0029817312 (diff)
hs-test: fix memleak testing
Type: fix Change-Id: I8d88fc5ccb37cc18c785b5dca47c7f66afefb73a Signed-off-by: Matus Fabian <matfabia@cisco.com>
-rw-r--r--extras/hs-test/hs_test.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/hs-test/hs_test.sh b/extras/hs-test/hs_test.sh
index a6288aae917..59edf57afc2 100644
--- a/extras/hs-test/hs_test.sh
+++ b/extras/hs-test/hs_test.sh
@@ -128,7 +128,7 @@ if [ $leak_check_set -eq 1 ]; then
echo -e "\e[1;31ma single test has to be specified when leak_check is set\e[1;0m"
exit 2
fi
- ginkgo_args="--focus $tc_name"
+ ginkgo_args="--focus ${tc_names[0]}"
sudo -E go run github.com/onsi/ginkgo/v2/ginkgo $ginkgo_args -- $args
exit 0
fi