Skip to content
Snippets Groups Projects
Commit 2b1a1ef1 authored by Anh Nguyen-Tuong's avatar Anh Nguyen-Tuong
Browse files

Check for existing of bc before running test

parent 7509eaa0
No related branches found
No related tags found
No related merge requests found
Pipeline #3800 failed
......@@ -4,6 +4,13 @@ export AFL_SKIP_CPUFREQ=1
export AFL_SKIP_BIN_CHECK=1
export AFL_I_DONT_CARE_ABOUT_MISSING_CRASHES=1
# make sure bc exists
which bc
if [ ! $? -eq 0 ]; then
echo "SKIP test: bc not on system"
exit 0
fi
user=$(whoami)
session=/tmp/tmp.${user}.zafl.bc.fixed_map.$$
......
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