Add handling of occational errors to 056-rempips fuzzer

Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
Clifford Wolf 2017-12-23 19:21:23 +01:00
parent 0e7bcfc128
commit 5c510f76be
2 changed files with 5 additions and 1 deletions

View File

@ -21,7 +21,7 @@ todo.txt:
python3 maketodo.py | sort -R | head -n10 > todo.txt
run:
+set -ex; while make clean; make todo.txt; test -s todo.txt; do make; make pushdb; done; true
+set -ex; while make clean; make todo.txt; test -s todo.txt; do if make; then make pushdb; fi; done; true
clean:
rm -rf .Xil/ .cache/ filtered_seg_int_[lr].segbits

View File

@ -4,3 +4,7 @@ Fuzzer for the remaining INT PIPs
Run this fuzzer a few times until it produces an empty todo.txt file (`make run` will run this loop).
This fuzzer occationally fails (depending on some random variables). Just restart it if you encounter
this issue. The script behind `make run` automatically handles errors by re-starting a run if an error
occurs.