ntel-gpu-tools/lib/tests/Makefile.sources
Thomas Wood 5a61421a02 lib/tests: use the "check_" prefix for tests
The "check_" prefix ensures the test programs are not installed and are
only built when "make check" is run.

Signed-off-by: Thomas Wood <thomas.wood@intel.com>
2014-10-29 17:26:38 +00:00

26 lines
438 B
Makefile

check_PROGRAMS = \
igt_no_exit \
igt_no_exit_list_only \
igt_fork_helper \
igt_list_only \
igt_no_subtest \
igt_simulation \
$(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 \
$(NULL)