mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-25 19:42:19 +00:00
Add a test case verifying the basic functionality of the hist:snapshot() action. Link: http://lkml.kernel.org/r/c0555f462cbfe56dadfec6e63e531e109bd72930.1550100284.git.tom.zanussi@linux.intel.com Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com> Acked-by: Masami Hiramatsu <mhiramat@kernel.org> Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
44 lines
1.0 KiB
Bash
44 lines
1.0 KiB
Bash
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# description: event trigger - test inter-event histogram trigger snapshot action
|
|
|
|
fail() { #msg
|
|
echo $1
|
|
exit_fail
|
|
}
|
|
|
|
if [ ! -f set_event ]; then
|
|
echo "event tracing is not supported"
|
|
exit_unsupported
|
|
fi
|
|
|
|
if [ ! -f snapshot ]; then
|
|
echo "snapshot is not supported"
|
|
exit_unsupported
|
|
fi
|
|
|
|
grep -q "onchange(var)" README || exit_unsupported # version issue
|
|
|
|
grep -q "snapshot()" README || exit_unsupported # version issue
|
|
|
|
echo "Test snapshot action"
|
|
|
|
echo 1 > /sys/kernel/debug/tracing/events/sched/enable
|
|
|
|
echo 'hist:keys=comm:newprio=prio:onchange($newprio).save(comm,prio):onchange($newprio).snapshot() if comm=="ping"' >> /sys/kernel/debug/tracing/events/sched/sched_waking/trigger
|
|
|
|
ping $LOCALHOST -c 3
|
|
nice -n 1 ping $LOCALHOST -c 3
|
|
|
|
echo 0 > tracing_on
|
|
|
|
if ! grep -q "changed:" events/sched/sched_waking/hist; then
|
|
fail "Failed to create onchange action inter-event histogram"
|
|
fi
|
|
|
|
if ! grep -q "comm=ping" snapshot; then
|
|
fail "Failed to create snapshot action inter-event histogram"
|
|
fi
|
|
|
|
exit 0
|