oss-fuzz/infra/base-images/base-libfuzzer/test

57 lines
1.5 KiB
Plaintext
Raw Normal View History

#!/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-26 21:22:20 +00:00
REPORT_DIR="/junit_reports"
mkdir -p $REPORT_DIR
2016-11-02 21:40:01 +00:00
set -o pipefail
2016-10-27 21:14:51 +00:00
DIR="/out"
N=0
for FUZZER_BINARY in $(find $DIR -executable -type f); do
2016-11-02 23:24:50 +00:00
FUZZER=$(basename $FUZZER_BINARY)
echo "testing $FUZZER"
2016-10-27 21:14:51 +00:00
out=$(tempfile)
2016-11-02 23:24:50 +00:00
just_run $FUZZER -runs=32 | tee $out
2016-10-27 21:14:51 +00:00
N=$[$N+1]
REPORT_TEXT=$(cat <<-EOF
2016-10-26 21:22:20 +00:00
<?xml version="1.0" encoding="UTF-8"?>
2016-10-27 21:14:51 +00:00
<testsuite name="$FUZZER" 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 21:14:51 +00:00
<testcase name="$FUZZER" classname="$FUZZER" time="1"/>
2016-10-26 21:22:20 +00:00
<system-out><![CDATA[]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>
EOF
)
2016-10-27 21:14:51 +00:00
echo $REPORT_TEXT > /junit_reports/$FUZZER.xml
2016-10-20 07:44:15 +00:00
done
if [ "$N" -eq "0" ]; then
echo "ERROR: no fuzzers found in $DIR"
ls -al /out
exit 1
fi
echo "$N fuzzers total"