forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-10-22 8ac6c7a54ed1b98d142dce24b11c6de6a1e239a5
kernel/tools/testing/selftests/ftrace/test.d/trigger/inter-event/trigger-inter-event-combined-hist.tc
....@@ -1,31 +1,12 @@
11 #!/bin/sh
2
+# SPDX-License-Identifier: GPL-2.0
23 # description: event trigger - test inter-event combined histogram trigger
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
-reset_tracer
27
-do_reset
28
-clear_synthetic_events
2910
3011 echo "Test create synthetic event"
3112
....@@ -44,15 +25,13 @@
4425 echo 'hist:keys=pid:ts1=common_timestamp.usecs if comm=="ping"' >> events/sched/sched_wakeup/trigger
4526 echo 'hist:keys=next_pid:wakeup_lat=common_timestamp.usecs-$ts1:onmatch(sched.sched_wakeup).wakeup_latency($wakeup_lat,next_pid) if next_comm=="ping"' > events/sched/sched_switch/trigger
4627
47
-echo 'waking+wakeup_latency u64 lat; pid_t pid' >> synthetic_events
48
-echo 'hist:keys=pid,lat:sort=pid,lat:ww_lat=$waking_lat+$wakeup_lat:onmatch(synthetic.wakeup_latency).waking+wakeup_latency($ww_lat,pid)' >> events/synthetic/wakeup_latency/trigger
49
-echo 'hist:keys=pid,lat:sort=pid,lat' >> events/synthetic/waking+wakeup_latency/trigger
28
+echo 'waking_plus_wakeup_latency u64 lat; pid_t pid' >> synthetic_events
29
+echo 'hist:keys=pid,lat:sort=pid,lat:ww_lat=$waking_lat+$wakeup_lat:onmatch(synthetic.wakeup_latency).waking_plus_wakeup_latency($ww_lat,pid)' >> events/synthetic/wakeup_latency/trigger
30
+echo 'hist:keys=pid,lat:sort=pid,lat' >> events/synthetic/waking_plus_wakeup_latency/trigger
5031
51
-ping localhost -c 3
52
-if ! grep -q "pid:" events/synthetic/waking+wakeup_latency/hist; then
32
+ping $LOCALHOST -c 3
33
+if ! grep -q "pid:" events/synthetic/waking_plus_wakeup_latency/hist; then
5334 fail "Failed to create combined histogram"
5435 fi
55
-
56
-do_reset
5736
5837 exit 0