From 936d6f432882c98832905c6116780545229bbd11 Mon Sep 17 00:00:00 2001 From: Jason Hiser <jdhiser@gmail.com> Date: Fri, 13 Sep 2019 19:15:15 -0400 Subject: [PATCH] added option to use throwing assert or real assert --- cicd_testing/do-fuzz.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cicd_testing/do-fuzz.sh b/cicd_testing/do-fuzz.sh index 51b957e..c5ee229 100755 --- a/cicd_testing/do-fuzz.sh +++ b/cicd_testing/do-fuzz.sh @@ -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" -- GitLab