perf/core: Replace zero-length array with flexible-array
[linux-2.6-microblaze.git] / tools / testing / selftests / ftrace / test.d / ftrace / func_profiler.tc
1 #!/bin/sh
2 # SPDX-License-Identifier: GPL-2.0
3 # description: ftrace - function profiler with function tracing
4
5 # There was a bug after a rewrite of the ftrace infrastructure that
6 # caused the function_profiler not to be able to run with the function
7 # tracer, because the function_profiler used the function_graph tracer
8 # and it was assumed the two could not run simultaneously.
9 #
10 # There was another related bug where the solution to the first bug
11 # broke the way filtering of the function tracer worked.
12 #
13 # This test triggers those bugs on those kernels.
14 #
15 # We need function_graph and profiling to to run this test
16 if ! grep -q function_graph available_tracers; then
17     echo "no function graph tracer configured"
18     exit_unsupported;
19 fi
20
21 if [ ! -f set_ftrace_filter ]; then
22     echo "set_ftrace_filter not found? Is dynamic ftrace not set?"
23     exit_unsupported
24 fi
25
26 if [ ! -f function_profile_enabled ]; then
27     echo "function_profile_enabled not found, function profiling enabled?"
28     exit_unsupported
29 fi
30
31 fail() { # mesg
32     echo $1
33     exit_fail
34 }
35
36 echo "Testing function tracer with profiler:"
37 echo "enable function tracer"
38 echo function > current_tracer
39 echo "enable profiler"
40 echo 1 > function_profile_enabled
41
42 sleep 1
43
44 echo "Now filter on just schedule"
45 echo '*schedule' > set_ftrace_filter
46 clear_trace
47
48 echo "Now disable function profiler"
49 echo 0 > function_profile_enabled
50
51 sleep 1
52
53 # make sure only schedule functions exist
54
55 echo "testing if only schedule is being traced"
56 if grep -v -e '^#' -e 'schedule' trace; then
57         fail "more than schedule was found"
58 fi
59
60 echo "Make sure schedule was traced"
61 if ! grep -e 'schedule' trace > /dev/null; then
62         cat trace
63         fail "can not find schedule in trace"
64 fi
65
66 echo > set_ftrace_filter
67 clear_trace
68
69 sleep 1
70
71 echo "make sure something other than scheduler is being traced"
72 if ! grep -v -e '^#' -e 'schedule' trace > /dev/null; then
73         cat trace
74         fail "no other functions besides schedule was found"
75 fi
76
77 exit 0