mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
12 lines
No EOL
187 B
Bash
Executable file
12 lines
No EOL
187 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ $# = 1 ]; then
|
|
RUNS="$1"
|
|
else
|
|
RUNS=-1
|
|
fi
|
|
|
|
mkdir -p corpus
|
|
cp tests/samples/*.blp corpus
|
|
cp tests/sample_errors/*.blp corpus
|
|
python3 tests/fuzz.py --runs $RUNS corpus |