tools/perf/tests/shell/test_event_open_fallback.sh

Source file repositories/reference/linux-study-clean/tools/perf/tests/shell/test_event_open_fallback.sh

File Facts

System
Linux kernel
Corpus path
tools/perf/tests/shell/test_event_open_fallback.sh
Extension
.sh
Size
1135 bytes
Lines
72
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.

Dependency Surface

Detected Declarations

Annotated Snippet

#!/bin/bash
# Perf event open fallback test
# SPDX-License-Identifier: GPL-2.0

skip_cnt=0
ok_cnt=0
err_cnt=0

perf_record()
{
	perf record -o /dev/null "$@" -- true 1>/dev/null 2>&1
}

test_decrease_precise_ip()
{
	echo "Decrease precise ip test"

	perf list pmu | grep -q 'cycles' || return 2

	if ! perf_record -e cycles; then
		return 2
	fi

	# It should reduce precision level down to 0 if needed.
	if ! perf_record -e cycles:P; then
		return 1
	fi
	return 0
}

test_decrease_precise_ip_complicated()
{
	echo "Decrease precise ip test (complicated case)"

	perf list pmu | grep -q 'mem-loads-aux' || return 2

	if ! perf_record -e '{mem-loads-aux:S,mem-loads:PS}'; then
		return 1
	fi
	return 0
}

count_result()
{
	if [ "$1" -eq 2 ] ; then
		skip_cnt=$((skip_cnt + 1))
		return
	fi
	if [ "$1" -eq 0 ] ; then
		ok_cnt=$((ok_cnt + 1))
		return
	fi
	err_cnt=$((err_cnt + 1))
}

ret=0
test_decrease_precise_ip		|| ret=$? ; count_result $ret ; ret=0
test_decrease_precise_ip_complicated	|| ret=$? ; count_result $ret ; ret=0

cleanup

if [ ${err_cnt} -gt 0 ] ; then
	exit 1
fi

if [ ${ok_cnt} -gt 0 ] ; then
	exit 0
fi

# Skip

Annotation

Implementation Notes