| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 | #!/bin/shmake cleanrm civetweb_fuzz?make WITH_ALL=1 TEST_FUZZ=1mv civetweb civetweb_fuzz1make WITH_ALL=1 TEST_FUZZ=2mv civetweb civetweb_fuzz2make WITH_ALL=1 TEST_FUZZ=3mv civetweb civetweb_fuzz3echo ""echo "====================="echo "== Build completed =="echo "====================="echo ""ls -halt civetweb*echo ""md5sum civetweb_fuzz*echo ""echo "====================="echo "== run fuzz test 1 =="echo "====================="echo ""./civetweb_fuzz1 -max_total_time=600 -max_len=2048 fuzztest/url/echo ""echo "====================="echo "== run fuzz test 2 =="echo "====================="echo ""./civetweb_fuzz2 -max_total_time=600 -max_len=2048 -dict=fuzztest/http1.dict fuzztest/http1/echo ""echo "====================="echo "== run fuzz test 3 =="echo "====================="echo ""./civetweb_fuzz3 -max_total_time=600 -max_len=2048 -dict=fuzztest/http1.dict fuzztest/http1c/echo ""echo "====================="echo "== fuzz tests done =="echo "====================="echo ""
 |