Some of the basic ftrace selftests should also be run in an instance. These test a quick case of running all tracers in the available_tracers file within the instance. The other is testing the clock used for the instance. Acked-by: Masami Hiramatsu <mhiramat@kernel.org> Acked-by: Namhyung Kim <namhyung@kernel.org> Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
9 lines
187 B
Bash
9 lines
187 B
Bash
#!/bin/sh
|
|
# description: Basic test for tracers
|
|
# flags: instance
|
|
test -f available_tracers
|
|
for t in `cat available_tracers`; do
|
|
echo $t > current_tracer
|
|
done
|
|
echo nop > current_tracer
|