diff options
author | Adrian Villin <avillin@cisco.com> | 2024-08-20 14:36:12 +0200 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2024-08-21 15:38:19 +0000 |
commit | 58cb6ba81833a79a877448aa60d7d68604ad6c4e (patch) | |
tree | 9b85360b64933bfeb64a40f3b31caa9fcc1a630d /extras/hs-test/script | |
parent | 4995d0da8cd2569966a7e4e29c8235712743eb4f (diff) |
hs-test: fix vppinstance logs and disable trace
- fixed a bug where vppinstance logs would concatenate -> each test now
has its own bind mount
- removed "--trace" flag to avoid skipped tests printing a full
stack trace. They are now only printed in the summary.
Type: test
Change-Id: Ib7f4254717cc798e456b9fca6f81685c8153ee2d
Signed-off-by: Adrian Villin <avillin@cisco.com>
Diffstat (limited to 'extras/hs-test/script')
-rwxr-xr-x | extras/hs-test/script/compress.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/hs-test/script/compress.sh b/extras/hs-test/script/compress.sh index 0e153a3b47b..654774842a3 100755 --- a/extras/hs-test/script/compress.sh +++ b/extras/hs-test/script/compress.sh @@ -11,7 +11,7 @@ then logDir=/tmp/hs-test/$dirName if [ -d "$logDir" ]; then mkdir -p ${WORKSPACE}/archives/summary - cp -r $logDir ${WORKSPACE}/archives/summary/ + rsync -a --exclude 'volumes' $logDir ${WORKSPACE}/archives/summary/ fi done echo "Done." |