mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Now that we have a good way to specify dependency of tests on programs, convert some of the tracer tests to use this method for specifying dependency on 'chrt'. Reviewed-by: Steven Rostedt (Google) <rostedt@goodmis.org> Signed-off-by: Naveen N. Rao <naveen.n.rao@linux.vnet.ibm.com> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
16 lines
340 B
Bash
16 lines
340 B
Bash
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# description: Test wakeup RT tracer
|
|
# requires: wakeup_rt:tracer chrt:program
|
|
|
|
echo wakeup_rt > current_tracer
|
|
echo 1 > tracing_on
|
|
echo 0 > tracing_max_latency
|
|
|
|
: "Wakeup a realtime task"
|
|
chrt -f 5 sleep 1
|
|
|
|
echo 0 > tracing_on
|
|
grep "+ \[[[:digit:]]*\]" trace
|
|
grep "==> \[[[:digit:]]*\]" trace
|
|
|