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()
local host=$(hostname)
local md=$(echo $upload_report | shyaml get-value markdown)
local desc=""
set +e
set -e
read -r -d '' desc << EOM
Turbo automatically found $crash_count crashes!
......@@ -61,8 +61,8 @@ Machine details: $mach
Full crash report is available here: $md
EOM
set -e
EOM
set +e
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