brintos

brintos / linux-shallow public Read only

0
0
Text · 336 B · e8f0fac Raw
17 lines · plain
1#!/bin/sh2# SPDX-License-Identifier: GPL-2.03# description: Test wakeup tracer4# requires: wakeup:tracer chrt:program5 6echo wakeup > current_tracer7echo 1 > tracing_on8echo 0 > tracing_max_latency9 10: "Wakeup higher priority task"11chrt -f 5 sleep 112 13echo 0 > tracing_on14grep '+ \[[[:digit:]]*\]' trace15grep '==> \[[[:digit:]]*\]' trace16 17