1#!/bin/sh
2# SPDX-License-Identifier: GPL-2.0
3# description: event trigger - test field variable support
4
5fail() { #msg
6    echo $1
7    exit_fail
8}
9
10if [ ! -f set_event ]; then
11    echo "event tracing is not supported"
12    exit_unsupported
13fi
14
15if [ ! -f synthetic_events ]; then
16    echo "synthetic event is not supported"
17    exit_unsupported
18fi
19
20if [ ! -f events/sched/sched_process_fork/hist ]; then
21    echo "hist trigger is not supported"
22    exit_unsupported
23fi
24
25echo "Test field variable support"
26
27echo 'wakeup_latency u64 lat; pid_t pid; int prio; char comm[16]' > synthetic_events
28echo 'hist:keys=comm:ts0=common_timestamp.usecs if comm=="ping"' > events/sched/sched_waking/trigger
29echo '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
30echo 'hist:keys=pid,prio,comm:vals=lat:sort=pid,prio' > events/synthetic/wakeup_latency/trigger
31
32ping $LOCALHOST -c 3
33if ! grep -q "ping" events/synthetic/wakeup_latency/hist; then
34    fail "Failed to create inter-event histogram"
35fi
36
37if ! grep -q "synthetic_prio=prio" events/sched/sched_waking/hist; then
38    fail "Failed to create histogram with field variable"
39fi
40
41echo '!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
42
43if grep -q "synthetic_prio=prio" events/sched/sched_waking/hist; then
44    fail "Failed to remove histogram with field variable"
45fi
46
47exit 0
48