Reenable libfuzzer_stb_image_sugar test (#2659)
This commit is contained in:
parent
e0c5304e32
commit
87e4a845e0
@ -63,7 +63,12 @@ script_runner = "@shell"
|
|||||||
script = '''
|
script = '''
|
||||||
rm -rf libafl_unix_shmem_server || true
|
rm -rf libafl_unix_shmem_server || true
|
||||||
timeout 31s ./${FUZZER_NAME} 2>/dev/null | tee fuzz_stdout.log || true
|
timeout 31s ./${FUZZER_NAME} 2>/dev/null | tee fuzz_stdout.log || true
|
||||||
echo "The test is skipped. See https://github.com/AFLplusplus/LibAFL/issues/1176"
|
if [ -z "$(grep "corpus: 30" fuzz_stdout.log)" ]; then
|
||||||
|
echo "Fuzzer does not generate any testcases or any crashes"
|
||||||
|
exit 1
|
||||||
|
else
|
||||||
|
echo "Fuzzer is working"
|
||||||
|
fi
|
||||||
'''
|
'''
|
||||||
dependencies = ["fuzzer"]
|
dependencies = ["fuzzer"]
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user