mirror of
				https://github.com/tiagovignatti/intel-gpu-tools.git
				synced 2025-11-03 19:47:15 +00:00 
			
		
		
		
	Unit test to check a segfaulting subtest is handled correctly. v2: Added script to check subtest results v3: Removed script. Updated test to use fork to monitor return status. v4: Added igt_segfault to .gitignore Signed-off-by: Derek Morton <derek.j.morton@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
		
			
				
	
	
		
			34 lines
		
	
	
		
			618 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			618 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 \
 | 
						|
	igt_segfault \
 | 
						|
	$(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)
 |