mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 10:33:27 +00:00
0bafd214e4
Make test suite setscheduler calls asynchronously. Remove the waits in the test cases and add a new testcase to verify the correctness of the setscheduler priority propagation. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
22 lines
434 B
Bash
22 lines
434 B
Bash
|
|
|
|
function testit ()
|
|
{
|
|
printf "%-30s: " $1
|
|
./rt-tester.py $1 | grep Pass
|
|
}
|
|
|
|
testit t2-l1-2rt-sameprio.tst
|
|
testit t2-l1-pi.tst
|
|
testit t2-l1-signal.tst
|
|
#testit t2-l2-2rt-deadlock.tst
|
|
testit t3-l1-pi-1rt.tst
|
|
testit t3-l1-pi-2rt.tst
|
|
testit t3-l1-pi-3rt.tst
|
|
testit t3-l1-pi-signal.tst
|
|
testit t3-l1-pi-steal.tst
|
|
testit t3-l2-pi.tst
|
|
testit t4-l2-pi-deboost.tst
|
|
testit t5-l4-pi-boost-deboost.tst
|
|
testit t5-l4-pi-boost-deboost-setsched.tst
|
|
|