I follow the README to build IRFuzzer on docker (master branch):
docker build . -t irfuzzer
And use the command below to fuzz with the original seed:
python3.10 scripts/fuzz.py --seeds seeds -o fuzzing -r 10 --type=stdout --targets="x86_64" --isel=dagisel --fuzzer=irfuzzer --time=10w -j 10 --on-exist=force
But the exit codes of all experiments are non-zero:
Experiment irfuzzer:dagisel:x86_64:0 exited with code 1
Experiment irfuzzer:dagisel:x86_64:1 exited with code 1
Experiment irfuzzer:dagisel:x86_64:2 exited with code 1
Experiment irfuzzer:dagisel:x86_64:3 exited with code 1
Experiment irfuzzer:dagisel:x86_64:4 exited with code 1
Experiment irfuzzer:dagisel:x86_64:5 exited with code 1
Experiment irfuzzer:dagisel:x86_64:6 exited with code 1
Experiment irfuzzer:dagisel:x86_64:7 exited with code 1
Experiment irfuzzer:dagisel:x86_64:8 exited with code 1
Experiment irfuzzer:dagisel:x86_64:9 exited with code 1
And the fuzzing directory is empty:
> tree ./fuzzing/
./fuzzing/
`-- irfuzzer
`-- dagisel
`-- x86_64
|-- 0
|-- 1
|-- 2
|-- 3
|-- 4
|-- 5
|-- 6
|-- 7
|-- 8
`-- 9
13 directories, 0 files
Is it expected? If yes, what is the symptom if bugs are found? Thanks you!
I follow the README to build IRFuzzer on docker (master branch):
And use the command below to fuzz with the original seed:
python3.10 scripts/fuzz.py --seeds seeds -o fuzzing -r 10 --type=stdout --targets="x86_64" --isel=dagisel --fuzzer=irfuzzer --time=10w -j 10 --on-exist=forceBut the exit codes of all experiments are non-zero:
And the
fuzzingdirectory is empty:Is it expected? If yes, what is the symptom if bugs are found? Thanks you!