2016-10-20 21:13:36 +00:00
|
|
|
#!/bin/bash -eu
|
2016-10-20 07:44:15 +00:00
|
|
|
# Copyright 2016 Google Inc.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
# Test fuzzers
|
|
|
|
|
|
|
|
compile
|
2016-10-20 21:13:36 +00:00
|
|
|
|
2016-10-26 21:22:20 +00:00
|
|
|
REPORT_DIR="/junit_reports"
|
|
|
|
mkdir -p $REPORT_DIR
|
|
|
|
|
|
|
|
REPORT_TEXT=$(cat <<-EOF
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2016-10-27 17:07:53 +00:00
|
|
|
<testsuite name="Fuzzers" tests="1" skipped="0" failures="0" errors="0" timestamp="2016-10-25T02:57:01" hostname="box678.localdomain" time="1">
|
2016-10-26 21:22:20 +00:00
|
|
|
<properties/>
|
2016-10-27 17:07:53 +00:00
|
|
|
<testcase name="SomeFuzzer" classname="SomeFuzzer" time="1"/>
|
2016-10-26 21:22:20 +00:00
|
|
|
<system-out><![CDATA[]]></system-out>
|
|
|
|
<system-err><![CDATA[]]></system-err>
|
|
|
|
</testsuite>
|
|
|
|
EOF
|
|
|
|
)
|
|
|
|
|
2016-10-20 21:13:36 +00:00
|
|
|
DIR="/out"
|
|
|
|
N=0
|
|
|
|
for FUZZER in $(find $DIR -executable -type f); do
|
|
|
|
echo "testing $FUZZER"
|
2016-10-20 07:44:15 +00:00
|
|
|
$FUZZER -runs=32
|
2016-10-20 21:13:36 +00:00
|
|
|
N=$[$N+1]
|
2016-10-26 21:22:20 +00:00
|
|
|
|
2016-10-26 22:19:28 +00:00
|
|
|
echo $REPORT_TEXT > /junit_reports/$(basename $FUZZER).xml
|
2016-10-20 07:44:15 +00:00
|
|
|
done
|
|
|
|
|
2016-10-20 21:13:36 +00:00
|
|
|
if [ "$N" -eq "0" ]; then
|
|
|
|
echo "ERROR: no fuzzers found in $DIR"
|
|
|
|
ls -al /out
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "$N fuzzers total"
|
|
|
|
|
2016-10-26 21:22:20 +00:00
|
|
|
ls -al /junit_reports/
|
|
|
|
|