mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-24 11:02:51 +00:00
Implement a simple TAP-based test engine in bash and a few basic tests using it, to be used to check for bugs and regressions. A new "check" target is added to the rtla Makefile that runs the test suite using the "prove" command implemented by Test::Harness. The only test format currently supported is running rtla with defined command arguments per test, checking its exit code. In case the exit code is non-zero, the output of rtla is displayed, together with the exit code. The test cases are adopted from rtla tests in the Continuous Kernel Integration (CKI) project [1] with the authors' approval. [1] https://gitlab.com/redhat/centos-stream/tests/kernel/kernel-tests/-/blob/main/rt-tests/us/rtla/ Cc: John Kacur <jkacur@redhat.com> Cc: Luis Goncalves <lgoncalv@redhat.com> Cc: Chang Yin <cyin@redhat.com> Cc: Qiao Zhao <qzhao@redhat.com> Link: https://lore.kernel.org/20250120135630.802111-1-tglozar@redhat.com Signed-off-by: Tomas Glozar <tglozar@redhat.com> Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
28 lines
714 B
Bash
28 lines
714 B
Bash
#!/bin/bash
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
source tests/engine.sh
|
|
test_begin
|
|
|
|
set_timeout 2m
|
|
|
|
check "verify help page" \
|
|
"timerlat --help"
|
|
check "verify -s/--stack" \
|
|
"timerlat top -s 3 -T 10 -t"
|
|
check "verify -P/--priority" \
|
|
"timerlat top -P F:1 -c 0 -d 1M -q"
|
|
check "test in nanoseconds" \
|
|
"timerlat top -i 2 -c 0 -n -d 30s"
|
|
check "set the automatic trace mode" \
|
|
"timerlat top -a 5 --dump-tasks"
|
|
check "print the auto-analysis if hits the stop tracing condition" \
|
|
"timerlat top --aa-only 5"
|
|
check "disable auto-analysis" \
|
|
"timerlat top -s 3 -T 10 -t --no-aa"
|
|
check "verify -c/--cpus" \
|
|
"timerlat hist -c 0 -d 30s"
|
|
check "hist test in nanoseconds" \
|
|
"timerlat hist -i 2 -c 0 -n -d 30s"
|
|
|
|
test_end
|