ntel-gpu-tools/lib/tests/Makefile.sources
Thomas Wood cff102ebb2 lib: use test failure status for igt_set_timeout
Use a failure status code for timeout to avoid confusion between tests
that take too long to execute versus a failure due to an operation
taking longer than expected.

v2: Add a "timed out" message before exiting. (Daniel Vetter)
    Fix the timeout library check by disabling hard errors in xfail
    tests, since these share the same exit status as test failure.

Signed-off-by: Thomas Wood <thomas.wood@intel.com>
2015-04-14 17:43:05 +01:00

33 lines
602 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 \
igt_invalid_subtest_name \
$(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.
DISABLE_HARD_ERRORS=1
XFAIL_TESTS = \
igt_no_exit \
igt_no_exit_list_only \
igt_no_subtest \
igt_simple_test_subtests \
igt_timeout \
igt_invalid_subtest_name \
$(NULL)