From fa5dc96ce3f7f7d1f51736aa75bc803a30acc4ca Mon Sep 17 00:00:00 2001 From: Petri Latvala Date: Tue, 21 Mar 2017 14:05:04 +0200 Subject: igt_command_line.sh: Handle the special cases of drv_selftest and drm_mm Kernel selftest launchers use dynamic subtest enumeration. When running on a kernel without selftests, they output nothing from --list-subtests and exit with 0. Handle this specialty in the checker. Signed-off-by: Petri Latvala --- tests/igt_command_line.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/igt_command_line.sh b/tests/igt_command_line.sh index a20e44cf..69fa843d 100755 --- a/tests/igt_command_line.sh +++ b/tests/igt_command_line.sh @@ -81,7 +81,12 @@ for test in $TESTLIST; do fi if [ $RET -eq 0 -a -z "$LIST" ]; then - fail $test + # Subtest enumeration of kernel selftest launchers depends + # on the running kernel. If selftests are not enabled, + # they will output nothing and exit with 0. + if [ "$testname" != "drv_selftest" -a "$testname" != "drm_mm" ]; then + fail $test + fi fi # check invalid subtest handling -- cgit v1.2.3