diff options
author | 2024-08-22 10:35:19 +0200 | |
---|---|---|
committer | 2024-08-22 11:53:13 +0000 | |
commit | 399d44074b93d9ce7b0c7d7aae05510633725980 (patch) | |
tree | 6ed1b8c35b31e9da4986bb0528268d464291b526 /extras/hs-test/script/compress.sh | |
parent | 56f5bd99850a4068aed6f1b5b02e6b872a455edc (diff) |
hs-test: fix incorrect exit status
- exit status was incorrect when tests didn't compile
- better summary formatting
- removed "full stack trace: null" from summary when a test times out
Type: test
Change-Id: Idd6b6bf3429fc8b704dd2345d257e9bdce1b82b7
Signed-off-by: Adrian Villin <avillin@cisco.com>
Diffstat (limited to 'extras/hs-test/script/compress.sh')
-rwxr-xr-x | extras/hs-test/script/compress.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/extras/hs-test/script/compress.sh b/extras/hs-test/script/compress.sh index 654774842a3..09db9b6720d 100755 --- a/extras/hs-test/script/compress.sh +++ b/extras/hs-test/script/compress.sh @@ -32,4 +32,6 @@ then echo "*************************** SUMMARY ***************************" cat "${HS_ROOT}/summary/failed-summary.log" exit 1 +else + exit $1 fi |