Some checks failed
sm-rpc / build (Debug, aarch64-linux-gnu) (push) Failing after 29s
sm-rpc / build (Debug, arm-linux-gnueabihf) (push) Failing after 16s
sm-rpc / build (Debug, host.gcc) (push) Failing after 11s
sm-rpc / build (Debug, mipsel-linux-gnu) (push) Failing after 12s
sm-rpc / build (Release, aarch64-linux-gnu) (push) Failing after 11s
sm-rpc / build (Release, arm-linux-gnueabihf) (push) Failing after 11s
sm-rpc / build (Release, host.gcc) (push) Failing after 12s
sm-rpc / build (Release, mipsel-linux-gnu) (push) Failing after 16s
37 lines
754 B
Bash
37 lines
754 B
Bash
#!/bin/sh
|
|
|
|
#################
|
|
# call build.sh
|
|
$(dirname $0)/build.sh
|
|
#################
|
|
|
|
echo ""
|
|
echo "====================="
|
|
echo "== run fuzz test 1 =="
|
|
echo "====================="
|
|
echo ""
|
|
|
|
./civetweb_fuzz1 -max_total_time=60 -max_len=2048 fuzztest/url/
|
|
|
|
echo ""
|
|
echo "====================="
|
|
echo "== run fuzz test 2 =="
|
|
echo "====================="
|
|
echo ""
|
|
|
|
./civetweb_fuzz2 -max_total_time=60 -max_len=2048 -dict=fuzztest/http1.dict fuzztest/http1/
|
|
|
|
echo ""
|
|
echo "====================="
|
|
echo "== run fuzz test 3 =="
|
|
echo "====================="
|
|
echo ""
|
|
|
|
./civetweb_fuzz3 -max_total_time=60 -max_len=2048 -dict=fuzztest/http1.dict fuzztest/http1c/
|
|
|
|
echo ""
|
|
echo "====================="
|
|
echo "== fuzz tests done =="
|
|
echo "====================="
|
|
echo ""
|