tools/perf/tests/shell/diff.sh
Source file repositories/reference/linux-study-clean/tools/perf/tests/shell/diff.sh
File Facts
- System
- Linux kernel
- Corpus path
tools/perf/tests/shell/diff.sh- Extension
.sh- Size
- 1996 bytes
- Lines
- 109
- Domain
- Support Tooling And Documentation
- Bucket
- tools
- Inferred role
- Support Tooling And Documentation: tools
- Status
- atlas-only
Why This File Exists
Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.
- Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.
Dependency Surface
- No C-style include directives detected by the generator.
Detected Declarations
function make_data
Annotated Snippet
#!/bin/bash
# perf diff tests
# SPDX-License-Identifier: GPL-2.0
set -e
err=0
perfdata1=$(mktemp /tmp/__perf_test.perf.data.XXXXX)
perfdata2=$(mktemp /tmp/__perf_test.perf.data.XXXXX)
perfdata3=$(mktemp /tmp/__perf_test.perf.data.XXXXX)
testprog="perf test -w thloop"
shelldir=$(dirname "$0")
# shellcheck source=lib/perf_has_symbol.sh
. "${shelldir}"/lib/perf_has_symbol.sh
testsym="test_loop"
skip_test_missing_symbol ${testsym}
cleanup() {
rm -rf "${perfdata1}"
rm -rf "${perfdata1}".old
rm -rf "${perfdata2}"
rm -rf "${perfdata2}".old
rm -rf "${perfdata3}"
rm -rf "${perfdata3}".old
trap - EXIT TERM INT
}
trap_cleanup() {
cleanup
exit 1
}
trap trap_cleanup EXIT TERM INT
make_data() {
file="$1"
if ! perf record -o "${file}" ${testprog} 2> /dev/null
then
echo "Workload record [Failed record]" >&2
echo 1
return
fi
if ! perf report -i "${file}" -q | grep -q "${testsym}"
then
echo "Workload record [Failed missing output]" >&2
echo 1
return
fi
echo 0
}
test_two_files() {
echo "Basic two file diff test"
err=$(make_data "${perfdata1}")
if [ "$err" != 0 ]
then
return
fi
err=$(make_data "${perfdata2}")
if [ "$err" != 0 ]
then
return
fi
if ! perf diff "${perfdata1}" "${perfdata2}" | grep -q "${testsym}"
then
echo "Basic two file diff test [Failed diff]"
Annotation
- Detected declarations: `function make_data`.
- Atlas domain: Support Tooling And Documentation / tools.
- Implementation status: atlas-only.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.