From bd239d7e3db137b8ba4ea3c354c621785da7b586 Mon Sep 17 00:00:00 2001 From: van Hauser Date: Sun, 22 Mar 2020 11:28:09 +0100 Subject: [PATCH] nice -n -20 to commit test script --- test/checkcommit.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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