GNU Linux-libre 4.19.286-gnu1
[releases.git] / tools / testing / selftests / ftrace / test.d / trigger / inter-event / trigger-onmax-action-hist.tc
1 #!/bin/sh
2 # description: event trigger - test inter-event histogram trigger onmax action
3
4 do_reset() {
5     reset_trigger
6     echo > set_event
7     clear_trace
8 }
9
10 fail() { #msg
11     do_reset
12     echo $1
13     exit_fail
14 }
15
16 if [ ! -f set_event ]; then
17     echo "event tracing is not supported"
18     exit_unsupported
19 fi
20
21 if [ ! -f synthetic_events ]; then
22     echo "synthetic event is not supported"
23     exit_unsupported
24 fi
25
26 clear_synthetic_events
27 reset_tracer
28 do_reset
29
30 echo "Test create synthetic event"
31
32 echo 'wakeup_latency  u64 lat pid_t pid char comm[16]' > synthetic_events
33 if [ ! -d events/synthetic/wakeup_latency ]; then
34     fail "Failed to create wakeup_latency synthetic event"
35 fi
36
37 echo "Test onmax action"
38
39 echo 'hist:keys=pid:ts0=common_timestamp.usecs if comm=="ping"' >> events/sched/sched_waking/trigger
40 echo 'hist:keys=next_pid:wakeup_lat=common_timestamp.usecs-$ts0:onmax($wakeup_lat).save(next_comm,prev_pid,prev_prio,prev_comm) if next_comm=="ping"' >> events/sched/sched_switch/trigger
41 ping localhost -c 3
42 if ! grep -q "max:" events/sched/sched_switch/hist; then
43     fail "Failed to create onmax action inter-event histogram"
44 fi
45
46 do_reset
47
48 exit 0