diff options
author | van Hauser <vh@thc.org> | 2020-03-22 11:28:09 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-03-22 11:28:09 +0100 |
commit | bd239d7e3db137b8ba4ea3c354c621785da7b586 (patch) | |
tree | 9cde290f76e6124a6bdd57046cf07e12f5af3fce /test | |
parent | da1f2f3c17f20c022ffd0ca4001dd418825bdcd7 (diff) | |
download | afl++-bd239d7e3db137b8ba4ea3c354c621785da7b586.tar.gz |
nice -n -20 to commit test script
Diffstat (limited to 'test')
-rwxr-xr-x | test/checkcommit.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/checkcommit.sh b/test/checkcommit.sh index ec75d516..e36a31a2 100755 --- a/test/checkcommit.sh +++ b/test/checkcommit.sh @@ -28,7 +28,7 @@ test -x ./afl-fuzz || { echo "BUILD FAIL $C" > $C.out ; make clean ; exit 1 ; } START=`date +%s` echo $START > $C.out -time ./afl-fuzz -i "$INDIR" -s 123 -o out-profile -- $CMDLINE 2>> $C.out +time nice -n -20 ./afl-fuzz -i "$INDIR" -s 123 -o out-profile -- $CMDLINE 2>> $C.out STOP=`date +%s` echo $STOP >> $C.out echo RUNTIME: `expr $STOP - $START` >> $C.out |