mirror of
				https://github.com/tiagovignatti/intel-gpu-tools.git
				synced 2025-11-04 12:07:12 +00:00 
			
		
		
		
	tests/gem_cpu_concurrent_blt: convert to subtest infrastructure
Small changes to avoid expensive setup just to print out the subtest list, and setting up the source buffers such that "early-read" works without having run "overwrite-soure" right beforehand. Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
		
							parent
							
								
									792a05a0a1
								
							
						
					
					
						commit
						4f6ab180a1
					
				@ -15,6 +15,7 @@ endif
 | 
			
		||||
TESTS_progs_M = \
 | 
			
		||||
	gem_basic \
 | 
			
		||||
	gem_cacheing \
 | 
			
		||||
	gem_cpu_concurrent_blit \
 | 
			
		||||
	flip_test \
 | 
			
		||||
	$(NULL)
 | 
			
		||||
 | 
			
		||||
@ -22,7 +23,6 @@ TESTS_progs = \
 | 
			
		||||
	getversion \
 | 
			
		||||
	getclient \
 | 
			
		||||
	getstats \
 | 
			
		||||
	gem_cpu_concurrent_blit \
 | 
			
		||||
	gem_cs_tlb \
 | 
			
		||||
	gem_gtt_concurrent_blit \
 | 
			
		||||
	gem_exec_nop \
 | 
			
		||||
 | 
			
		||||
@ -93,11 +93,13 @@ main(int argc, char **argv)
 | 
			
		||||
	drm_intel_bufmgr *bufmgr;
 | 
			
		||||
	struct intel_batchbuffer *batch;
 | 
			
		||||
	int num_buffers = 128, max;
 | 
			
		||||
	drm_intel_bo *src[128], *dst[128], *dummy;
 | 
			
		||||
	drm_intel_bo *src[128], *dst[128], *dummy = NULL;
 | 
			
		||||
	int width = 512, height = 512;
 | 
			
		||||
	int fd;
 | 
			
		||||
	int i;
 | 
			
		||||
 | 
			
		||||
	drmtest_subtest_init(argc, argv);
 | 
			
		||||
 | 
			
		||||
	fd = drm_open_any();
 | 
			
		||||
 | 
			
		||||
	max = gem_aperture_size (fd) / (1024 * 1024) / 2;
 | 
			
		||||
@ -108,27 +110,36 @@ main(int argc, char **argv)
 | 
			
		||||
	drm_intel_bufmgr_gem_enable_reuse(bufmgr);
 | 
			
		||||
	batch = intel_batchbuffer_alloc(bufmgr, intel_get_drm_devid(fd));
 | 
			
		||||
 | 
			
		||||
	if (!drmtest_only_list_subtests()) {
 | 
			
		||||
		for (i = 0; i < num_buffers; i++) {
 | 
			
		||||
			src[i] = create_bo(bufmgr, i, width, height);
 | 
			
		||||
			dst[i] = create_bo(bufmgr, ~i, width, height);
 | 
			
		||||
		}
 | 
			
		||||
		dummy = create_bo(bufmgr, 0, width, height);
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	/* try to overwrite the source values */
 | 
			
		||||
	if (drmtest_run_subtest("overwrite-source")) {
 | 
			
		||||
		for (i = 0; i < num_buffers; i++)
 | 
			
		||||
			intel_copy_bo(batch, dst[i], src[i], width, height);
 | 
			
		||||
		for (i = num_buffers; i--; )
 | 
			
		||||
			set_bo(src[i], 0xdeadbeef, width, height);
 | 
			
		||||
		for (i = 0; i < num_buffers; i++)
 | 
			
		||||
			cmp_bo(dst[i], i, width, height);
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	/* try to read the results before the copy completes */
 | 
			
		||||
	if (drmtest_run_subtest("early-read")) {
 | 
			
		||||
		for (i = num_buffers; i--; )
 | 
			
		||||
			set_bo(src[i], 0xdeadbeef, width, height);
 | 
			
		||||
		for (i = 0; i < num_buffers; i++)
 | 
			
		||||
			intel_copy_bo(batch, dst[i], src[i], width, height);
 | 
			
		||||
		for (i = num_buffers; i--; )
 | 
			
		||||
			cmp_bo(dst[i], 0xdeadbeef, width, height);
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	/* and finally try to trick the kernel into loosing the pending write */
 | 
			
		||||
	if (drmtest_run_subtest("gpu-read-after-write")) {
 | 
			
		||||
		for (i = num_buffers; i--; )
 | 
			
		||||
			set_bo(src[i], 0xabcdabcd, width, height);
 | 
			
		||||
		for (i = 0; i < num_buffers; i++)
 | 
			
		||||
@ -137,6 +148,7 @@ main(int argc, char **argv)
 | 
			
		||||
			intel_copy_bo(batch, dummy, dst[i], width, height);
 | 
			
		||||
		for (i = num_buffers; i--; )
 | 
			
		||||
			cmp_bo(dst[i], 0xabcdabcd, width, height);
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return 0;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user