From 8753180a80e03dd031fa7f470adbcbb4a611d1c9 Mon Sep 17 00:00:00 2001 From: Maros Ondrejicka Date: Mon, 19 Dec 2022 20:35:27 +0100 Subject: hs-test: add runtime options Options "-p" to not remove topology elements after the test finishes "-v" from now on extra output from tests is hidden by default, this will show it again Type: test Signed-off-by: Maros Ondrejicka Change-Id: I626188561c883534e9004d5130ee2a972d12b4e2 --- extras/hs-test/test | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'extras/hs-test/test') diff --git a/extras/hs-test/test b/extras/hs-test/test index 0bccc871711..cd0a6e176f5 100755 --- a/extras/hs-test/test +++ b/extras/hs-test/test @@ -1,4 +1,18 @@ #!/usr/bin/env bash source vars -sudo -E go test -buildvcs=false -v $@ + +for ARG in "$@" +do + if [[ "$ARG" = "-p" ]] + then + export HST_PERSIST=1 + shift + elif [[ "$ARG" = "-v" ]] + then + export HST_VERBOSE=1 + shift + fi +done + +sudo -E go test -buildvcs=false -v $@ -- cgit 1.2.3-korg