hc
2024-05-14 bedbef8ad3e75a304af6361af235302bcc61d06b
kernel/tools/testing/selftests/ftrace/test.d/trigger/inter-event/trigger-field-variable-support.tc
....@@ -1,31 +1,12 @@
11 #!/bin/sh
2
+# SPDX-License-Identifier: GPL-2.0
23 # description: event trigger - test field variable support
3
-
4
-do_reset() {
5
- reset_trigger
6
- echo > set_event
7
- clear_trace
8
-}
4
+# requires: set_event synthetic_events events/sched/sched_process_fork/hist
95
106 fail() { #msg
11
- do_reset
127 echo $1
138 exit_fail
149 }
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
2910
3011 echo "Test field variable support"
3112
....@@ -34,7 +15,7 @@
3415 echo 'hist:keys=next_comm:wakeup_lat=common_timestamp.usecs-$ts0:onmatch(sched.sched_waking).wakeup_latency($wakeup_lat,next_pid,sched.sched_waking.prio,next_comm) if next_comm=="ping"' > events/sched/sched_switch/trigger
3516 echo 'hist:keys=pid,prio,comm:vals=lat:sort=pid,prio' > events/synthetic/wakeup_latency/trigger
3617
37
-ping localhost -c 3
18
+ping $LOCALHOST -c 3
3819 if ! grep -q "ping" events/synthetic/wakeup_latency/hist; then
3920 fail "Failed to create inter-event histogram"
4021 fi
....@@ -48,7 +29,5 @@
4829 if grep -q "synthetic_prio=prio" events/sched/sched_waking/hist; then
4930 fail "Failed to remove histogram with field variable"
5031 fi
51
-
52
-do_reset
5332
5433 exit 0