3 # Copyright (C) 2013 Christian Babeux <christian.babeux@efficios.com>
4 # Copyright (C) 2015 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6 # SPDX-License-Identifier: GPL-2.0-only
8 TEST_DESC
="LTTng - Event wildcard test"
11 TESTDIR
=$CURDIR/..
/..
/..
12 TESTAPP_PATH
="$TESTDIR/utils/testapp"
13 TESTAPP_NAME
="gen-ust-events"
14 TESTAPP_BIN
="$TESTAPP_PATH/$TESTAPP_NAME/$TESTAPP_NAME"
15 SESSION_NAME
="wildcard"
19 NUM_UST_TESTS
=$
(( 7 * 25 ))
20 NUM_KERNEL_TESTS
=$
(( 7 * 25 ))
21 NUM_TESTS
=$
(($NUM_UST_TESTS+$NUM_KERNEL_TESTS+$NUM_GLOBAL_TESTS))
23 source $TESTDIR/utils
/utils.sh
27 $TESTAPP_BIN -i $NR_ITER -w $NR_USEC_WAIT
32 # Trigger the event for 100 iterations
33 echo -n "100" > /proc
/lttng-test-filter-event
36 function test_event_wildcard
()
38 TRACE_PATH
=$
(mktemp
--tmpdir -d "tmp.${FUNCNAME[0]}_trace_path.XXXXXX")
44 create_lttng_session_ok
$SESSION_NAME $TRACE_PATH
46 if [ $DOMAIN = kernel
]; then
48 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN enable-channel
-k chan
-s $SESSION_NAME --subbuf-size=8M
--num-subbuf=4
51 enable_
${DOMAIN}_lttng_event_ok
$SESSION_NAME "$WILDCARD" "$CHANNEL"
53 start_lttng_tracing_ok
56 ok $?
"Traced application stopped."
59 destroy_lttng_session_ok
$SESSION_NAME
61 if [ ${FIND} -eq 1 ]; then
62 trace_matches
$EVENT_NAME $NR_ITER $TRACE_PATH
64 trace_matches
$EVENT_NAME 0 $TRACE_PATH
70 function test_event_wildcard_fail
()
72 TRACE_PATH
=$
(mktemp
--tmpdir -d "tmp.${FUNCNAME[0]}_trace_path.XXXXXX")
76 create_lttng_session_ok
$SESSION_NAME $TRACE_PATH
77 enable_
${DOMAIN}_lttng_event_fail
$SESSION_NAME "$WILDCARD"
78 destroy_lttng_session_ok
$SESSION_NAME
83 # MUST set TESTDIR before calling those functions
86 print_test_banner
"$TEST_DESC"
90 diag
"Test UST wildcard"
92 if [ ! -x "$TESTAPP_BIN" ]; then
93 BAIL_OUT
"No UST nevents binary detected."
96 EVENT_NAME
="tp:tptest"
99 test_event_wildcard ust
0 'tp:abc*'
100 test_event_wildcard ust
0 '*abc'
101 test_event_wildcard ust
0 '*z*'
102 test_event_wildcard ust
0 '*\**'
103 test_event_wildcard ust
0 '*\*'
104 test_event_wildcard ust
0 '\**'
105 test_event_wildcard ust
0 '*:*tpte*s'
106 test_event_wildcard ust
0 'tp**tpTest'
109 test_event_wildcard ust
1 'tp:tp*'
110 test_event_wildcard ust
1 '*'
111 test_event_wildcard ust
1 'tp:tptest*'
112 test_event_wildcard ust
1 '**'
113 test_event_wildcard ust
1 '***'
114 test_event_wildcard ust
1 '*tptest'
115 test_event_wildcard ust
1 '**tptest'
116 test_event_wildcard ust
1 '*tpte*'
117 test_event_wildcard ust
1 '*tp*'
118 test_event_wildcard ust
1 '*tp**'
119 test_event_wildcard ust
1 '*:*tptest'
120 test_event_wildcard ust
1 '*:*tpte*t'
121 test_event_wildcard ust
1 't*p*:*t*e*s*t'
122 test_event_wildcard ust
1 '*t*p*:*t*e*s*t*'
123 test_event_wildcard ust
1 'tp*tptest'
124 test_event_wildcard ust
1 'tp**tptest'
125 test_event_wildcard ust
1 'tp*test'
127 if [ "$(id -u)" == "0" ]; then
133 skip
$isroot "Root access is needed. Skipping all kernel wildcard tests." $NUM_KERNEL_TESTS ||
135 diag
"Test kernel wildcards"
139 EVENT_NAME
="lttng_test_filter_event"
142 test_event_wildcard kernel
0 'lttng_test_abc*'
143 test_event_wildcard kernel
0 '*abc'
144 test_event_wildcard kernel
0 '*z*'
145 test_event_wildcard kernel
0 '*\**'
146 test_event_wildcard kernel
0 '*\*'
147 test_event_wildcard kernel
0 '\**'
148 test_event_wildcard kernel
0 '*:*eve*n'
151 test_event_wildcard kernel
1 'lttng_test_fil*'
152 test_event_wildcard kernel
1 '*'
153 test_event_wildcard kernel
1 'lttng_test_filter_event*'
154 test_event_wildcard kernel
1 '**'
155 test_event_wildcard kernel
1 '***'
156 test_event_wildcard kernel
1 '*filter_event'
157 test_event_wildcard kernel
1 '*ter_ev*'
158 test_event_wildcard kernel
1 '*test*'
159 test_event_wildcard kernel
1 '*test**'
160 test_event_wildcard kernel
1 '*e*'
161 test_event_wildcard kernel
1 '*_*event'
162 test_event_wildcard kernel
1 '*_*filter_*nt'
163 test_event_wildcard kernel
1 '*_**filter_*nt'
164 test_event_wildcard kernel
1 'l*t*t*n*g*_*t*e*s*t*_*f*i*l*t*e*r*_*e*v*e*n*t'
165 test_event_wildcard kernel
1 '*l*t*t*n*g*_*t*e*s*t*_*f*i*l*t*e*r*_*e*v*e*n*t*'
166 test_event_wildcard kernel
1 'lttng*event'
167 test_event_wildcard kernel
1 'lttng*test*filter*event'
168 test_event_wildcard kernel
1 '*lttng*test*filter*event*'
170 modprobe
--remove lttng-test