mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-09 00:46:17 +00:00
Simple tests do not support subtests, so fail if igt_subtest is used in one. Signed-off-by: Thomas Wood <thomas.wood@intel.com>
30 lines
524 B
Makefile
30 lines
524 B
Makefile
check_PROGRAMS = \
|
|
igt_no_exit \
|
|
igt_no_exit_list_only \
|
|
igt_fork_helper \
|
|
igt_list_only \
|
|
igt_no_subtest \
|
|
igt_simulation \
|
|
igt_simple_test_subtests \
|
|
igt_timeout \
|
|
$(NULL)
|
|
|
|
check_SCRIPTS = \
|
|
igt_command_line.sh \
|
|
$(NULL)
|
|
|
|
TESTS = \
|
|
$(check_PROGRAMS) \
|
|
$(check_SCRIPTS) \
|
|
$(NULL)
|
|
|
|
# Test that exercise specific asserts in the test framework library and are
|
|
# hence expected to fail.
|
|
XFAIL_TESTS = \
|
|
igt_no_exit \
|
|
igt_no_exit_list_only \
|
|
igt_no_subtest \
|
|
igt_simple_test_subtests \
|
|
igt_timeout \
|
|
$(NULL)
|