summaryrefslogtreecommitdiff
path: root/tests/igt_command_line.sh
diff options
context:
space:
mode:
authorArkadiusz Hiler <arkadiusz.hiler@intel.com>2017-08-10 18:15:09 +0300
committerArkadiusz Hiler <arkadiusz.hiler@intel.com>2017-08-10 19:30:39 +0300
commit1385b31d9371fae02af2fd8adb0d9ea86a5bb0f2 (patch)
treeeab981b618da725841f03f8a6598c14688dc91ec /tests/igt_command_line.sh
parent68e2eab2fd80494811e2e68dd8e6155b15c85833 (diff)
tests/igt_command_line: Ignore subtest list for kms_ccs
Temporary workaround for "make check" to pass despite the issue with kms_ccs which do not list any subtests, even though it should. TO BE REVERTED by Daniel Stone Cc: Daniel Stone <daniels@collabora.com> Cc: Daniel Vetter <daniel.vetter@intel.com> Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com> Acked-by: Daniel Vetter <daniel.vetter@intel.com>
Diffstat (limited to 'tests/igt_command_line.sh')
-rwxr-xr-xtests/igt_command_line.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/igt_command_line.sh b/tests/igt_command_line.sh
index 7f80fc80..37756f22 100755
--- a/tests/igt_command_line.sh
+++ b/tests/igt_command_line.sh
@@ -97,7 +97,10 @@ for test in $TESTLIST; do
# 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
+ # XXX: kms_ccs is added temporarily to workaround "make check" fail
+ if [ "$testname" != "drv_selftest" \
+ -a "$testname" != "drm_mm" \
+ -a "$testname" != "kms_ccs" ]; then
fail $test
fi
fi