mirror of
https://github.com/ysoftdevs/wapifuzz.git
synced 2026-01-14 07:33:29 +01:00
12 lines
244 B
Bash
12 lines
244 B
Bash
cd ../
|
|
|
|
# Run fuzzer
|
|
./run.sh ./tests/localhost_config.json ./tests/documentation.yaml 2>&1 | grep "Fuzzing hangs on test case number: 1. See log file for an error message."
|
|
RET_VAL=`echo $?`
|
|
|
|
if [ $RET_VAL -eq 0 ] ; then
|
|
exit 0
|
|
fi
|
|
|
|
exit 1
|