mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-11 01:46:14 +00:00
Again they're not really igt testcases so are in the way of running spatch unconditionally. Move them someplace else. Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
30 lines
512 B
Makefile
30 lines
512 B
Makefile
noinst_PROGRAMS = \
|
|
$(TESTS_testsuite) \
|
|
$(NULL)
|
|
|
|
TESTS_testsuite = \
|
|
igt_no_exit \
|
|
igt_no_exit_list_only \
|
|
igt_fork_helper \
|
|
igt_list_only \
|
|
igt_no_subtest \
|
|
igt_simulation \
|
|
$(NULL)
|
|
|
|
TESTS_testsuite_scripts = \
|
|
igt_command_line.sh \
|
|
$(NULL)
|
|
|
|
TESTS = \
|
|
$(TESTS_testsuite) \
|
|
$(TESTS_testsuite_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 \
|
|
$(NULL)
|