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

added option to use throwing assert or real assert

parent 7ba3d3b5
No related branches found
No related tags found
No related merge requests found
Pipeline #4788 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
read -r -d '' desc << EOM read -r -d '' desc << EOM
Turbo automatically found $crash_count crashes! Turbo automatically found $crash_count crashes!
...@@ -61,8 +61,8 @@ Machine details: $mach ...@@ -61,8 +61,8 @@ 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.
Please register or to comment