Skip to content
Snippets Groups Projects
Commit 12b69722 authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

added option to use throwing assert or real assert

parent 936d6f43
No related branches found
No related tags found
No related merge requests found
Pipeline #4789 failed
...@@ -49,7 +49,7 @@ function main() ...@@ -49,7 +49,7 @@ function main()
local host=$(hostname) local host=$(hostname)
local md=$(echo $upload_report | shyaml get-value markdown) local md=$(echo $upload_report | shyaml get-value markdown)
local desc="" local desc=""
set -e set +e # allow read to return non-zero as read does that on EOF
read -r -d '' desc << EOM read -r -d '' desc << EOM
Turbo automatically found $crash_count crashes! Turbo automatically found $crash_count crashes!
...@@ -62,7 +62,7 @@ Machine details: $mach ...@@ -62,7 +62,7 @@ Machine details: $mach
Full crash report is available here: $md Full crash report is available here: $md
EOM EOM
set +e set -e
local title="Turbo found $crash_count bugs in libEHP on $date" local title="Turbo found $crash_count bugs in libEHP on $date"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment