blob: d8941d3ab73022c4c29329b6f4142b7d3463512c [file] [log] [blame]
#!/bin/bash
# Copyright 2022 The Centipede Authors.
#
# 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
#
# https://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 a target binary instrumented with trace_pc
set -eu
source "$(dirname "$0")/../test_util.sh"
CENTIPEDE_TEST_SRCDIR="$(centipede::get_centipede_test_srcdir)"
centipede::maybe_set_var_to_executable_path \
CENTIPEDE_BINARY "${CENTIPEDE_TEST_SRCDIR}/centipede"
centipede::maybe_set_var_to_executable_path \
TARGET_BINARY "${CENTIPEDE_TEST_SRCDIR}/testing/abort_fuzz_target_trace_pc"
# Run fuzzing until the first crash.
WD="${TEST_TMPDIR}/WD"
LOG="${TEST_TMPDIR}/log"
centipede::ensure_empty_dir "${WD}"
"${CENTIPEDE_BINARY}" --binary="${TARGET_BINARY}" --workdir="${WD}" \
--exit_on_crash=1 --seed=1 \
2>&1 |tee "${LOG}"
# Check that we observe the edge coverage, not just random features.
centipede::assert_regex_in_file "cov: [3456] " "${LOG}"
# Check that we fell back to GetPcTableFromBinaryWithTracePC.
centipede::assert_regex_in_file \
"Fall back to GetPcTableFromBinaryWithTracePC" "${LOG}"
# Check that we found the crashy input.
centipede::assert_regex_in_file "Input bytes.*: AbOrT" "${LOG}"
echo "PASS"