mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-08-17 22:21:10 +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>
17 lines
336 B
Bash
17 lines
336 B
Bash
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# description: Test wakeup tracer
|
|
# requires: wakeup:tracer chrt:program
|
|
|
|
echo wakeup > current_tracer
|
|
echo 1 > tracing_on
|
|
echo 0 > tracing_max_latency
|
|
|
|
: "Wakeup higher priority task"
|
|
chrt -f 5 sleep 1
|
|
|
|
echo 0 > tracing_on
|
|
grep '+ \[[[:digit:]]*\]' trace
|
|
grep '==> \[[[:digit:]]*\]' trace
|
|
|