[Intel-gfx] [PATCH 6/7] tests: use drmtest_skip() in caching ioctl helpers

Daniel Vetter daniel.vetter at ffwll.ch
Mon Aug 12 11:10:00 CEST 2013


This way we can rip out all the skip handling from the test control flow,
and additionally (by using drmtest_retval()) even get correct exit codes.

The only tricky part is that when we only want ot skip parts of a test
(like for gem_pread and gem_pwrite) we need to split out those parts as
subtests. But no addition of control-flow is required, the set/longjmp
magic in the helpers all makes it happen.

Also we make extensive use of the behaviour of drmtest_skip to skip
all subsequent subtests if it is called outside of a subtest. This allows
us to re-flatten the control flow a lot.

Signed-off-by: Daniel Vetter <daniel.vetter at ffwll.ch>
---
 lib/drmtest.c                    |  20 ++--
 lib/drmtest.h                    |   4 +-
 tests/Makefile.am                |   4 +-
 tests/gem_caching.c              |   5 +-
 tests/gem_partial_pwrite_pread.c |  15 +--
 tests/gem_pread.c                |  50 +++++-----
 tests/gem_pread_after_blit.c     |   9 +-
 tests/gem_pwrite.c               |  48 +++++-----
 tests/gem_pwrite_pread.c         | 194 +++++++++++++++++++--------------------
 9 files changed, 178 insertions(+), 171 deletions(-)

diff --git a/lib/drmtest.c b/lib/drmtest.c
index 77e8002..7e3c1d8 100644
--- a/lib/drmtest.c
+++ b/lib/drmtest.c
@@ -40,6 +40,7 @@
 #include <stdlib.h>
 #include <linux/kd.h>
 #include <unistd.h>
+#include <sys/wait.h>
 #include "drm_fourcc.h"
 
 #include "drmtest.h"
@@ -392,23 +393,26 @@ struct local_drm_i915_gem_caching {
 #define LOCAL_DRM_IOCTL_I915_GEM_GET_CACHEING \
 	DRM_IOWR(DRM_COMMAND_BASE + LOCAL_DRM_I915_GEM_GET_CACHEING, struct local_drm_i915_gem_caching)
 
-int gem_has_caching(int fd)
+void gem_check_caching(int fd)
 {
 	struct local_drm_i915_gem_caching arg;
 	int ret;
 
 	arg.handle = gem_create(fd, 4096);
-	if (arg.handle == 0)
-		return 0;
+	assert(arg.handle != 0);
 
 	arg.caching = 0;
 	ret = ioctl(fd, LOCAL_DRM_IOCTL_I915_GEM_SET_CACHEING, &arg);
 	gem_close(fd, arg.handle);
 
-	return ret == 0;
+	if (ret != 0) {
+		if (!drmtest_only_list_subtests())
+			printf("no set_caching support detected\n");
+		drmtest_skip();
+	}
 }
 
-int gem_set_caching(int fd, uint32_t handle, int caching)
+void gem_set_caching(int fd, uint32_t handle, int caching)
 {
 	struct local_drm_i915_gem_caching arg;
 	int ret;
@@ -416,7 +420,11 @@ int gem_set_caching(int fd, uint32_t handle, int caching)
 	arg.handle = handle;
 	arg.caching = caching;
 	ret = ioctl(fd, LOCAL_DRM_IOCTL_I915_GEM_SET_CACHEING, &arg);
-	return ret == 0 ? 0 : -errno;
+
+	if (ret != 0 && (errno == ENOTTY || errno == EINVAL))
+		drmtest_skip();
+	else
+		assert(ret == 0);
 }
 
 uint32_t gem_get_caching(int fd, uint32_t handle)
diff --git a/lib/drmtest.h b/lib/drmtest.h
index 13e25bb..624abb2 100644
--- a/lib/drmtest.h
+++ b/lib/drmtest.h
@@ -54,8 +54,8 @@ bool gem_has_bsd(int fd);
 bool gem_has_blt(int fd);
 bool gem_has_vebox(int fd);
 int gem_get_num_rings(int fd);
-int gem_has_caching(int fd);
-int gem_set_caching(int fd, uint32_t handle, int caching);
+void gem_check_caching(int fd);
+void gem_set_caching(int fd, uint32_t handle, int caching);
 uint32_t gem_get_caching(int fd, uint32_t handle);
 uint32_t gem_flink(int fd, uint32_t handle);
 uint32_t gem_open(int fd, uint32_t name);
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 8fff22c..f3475ad 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -30,8 +30,10 @@ TESTS_progs_M = \
 	gem_linear_blits \
 	gem_mmap_gtt \
 	gem_partial_pwrite_pread \
+	gem_pread \
 	gem_pread_after_blit \
 	gem_prw_concurrent_blit \
+	gem_pwrite \
 	gem_pwrite_pread \
 	gem_ringfill \
 	gem_set_tiling_vs_blt \
@@ -73,8 +75,6 @@ TESTS_progs = \
 	gem_mmap_offset_exhaustion \
 	gem_pin \
 	gem_pipe_control_store_loop \
-	gem_pread \
-	gem_pwrite \
 	gem_readwrite \
 	gem_reg_read \
 	gem_reloc_overflow \
diff --git a/tests/gem_caching.c b/tests/gem_caching.c
index 259662f..ed58c28 100644
--- a/tests/gem_caching.c
+++ b/tests/gem_caching.c
@@ -118,10 +118,7 @@ int main(int argc, char **argv)
 
 	fd = drm_open_any();
 
-	if (!gem_has_caching(fd)) {
-		printf("no set_caching support detected\n");
-		return 77;
-	}
+	gem_check_caching(fd);
 
 	devid = intel_get_drm_devid(fd);
 	if (IS_GEN2(devid)) /* chipset only handles cached -> uncached */
diff --git a/tests/gem_partial_pwrite_pread.c b/tests/gem_partial_pwrite_pread.c
index a27e584..f6e6e32 100644
--- a/tests/gem_partial_pwrite_pread.c
+++ b/tests/gem_partial_pwrite_pread.c
@@ -257,17 +257,8 @@ static void do_tests(int cache_level, const char *suffix)
 {
 	char name[80];
 
-	if (cache_level != -1) {
-		switch (gem_set_caching(fd, scratch_bo->handle, cache_level)) {
-		case 0: break;
-		case -EINVAL:
-		case -ENOTTY:
-			return;
-		default:
-			assert(0);
-			return;
-		}
-	}
+	if (cache_level != -1)
+		gem_set_caching(fd, scratch_bo->handle, cache_level);
 
 	snprintf(name, sizeof(name), "reads%s", suffix);
 	drmtest_subtest_block(name)
@@ -315,5 +306,5 @@ int main(int argc, char **argv)
 
 	close(fd);
 
-	return 0;
+	return drmtest_retval();
 }
diff --git a/tests/gem_pread.c b/tests/gem_pread.c
index 7c2f18f..b5c0e95 100644
--- a/tests/gem_pread.c
+++ b/tests/gem_pread.c
@@ -93,9 +93,10 @@ int main(int argc, char **argv)
 		{ -1 },
 	}, *c;
 
+	drmtest_subtest_init(argc, argv);
 	drmtest_skip_on_simulation();
 
-	if (argc > 1)
+	if (argc > 1 && atoi(argv[1]))
 		object_size = atoi(argv[1]);
 	if (object_size == 0)
 		object_size = OBJECT_SIZE;
@@ -106,41 +107,44 @@ int main(int argc, char **argv)
 	dst = gem_create(fd, object_size);
 	src = malloc(object_size);
 
-	for (count = 1; count <= 1<<17; count <<= 1) {
-		struct timeval start, end;
-
-		gettimeofday(&start, NULL);
-		do_gem_read(fd, dst, src, object_size, count);
-		gettimeofday(&end, NULL);
-		printf("Time to pread %d bytes x %6d:	%7.3fµs, %s\n",
-		       object_size, count,
-		       elapsed(&start, &end, count),
-		       bytes_per_sec((char *)buf, object_size/elapsed(&start, &end, count)*1e6));
-		fflush(stdout);
-	}
-
-	for (c = cache; c->level != -1; c++) {
-		if (gem_set_caching(fd, dst, c->level))
-			continue;
-
+	drmtest_subtest_block("normal") {
 		for (count = 1; count <= 1<<17; count <<= 1) {
 			struct timeval start, end;
 
 			gettimeofday(&start, NULL);
 			do_gem_read(fd, dst, src, object_size, count);
 			gettimeofday(&end, NULL);
-			printf("Time to %s pread %d bytes x %6d:	%7.3fµs, %s\n",
-					c->name, object_size, count,
-					elapsed(&start, &end, count),
-					bytes_per_sec((char *)buf, object_size/elapsed(&start, &end, count)*1e6));
+			printf("Time to pread %d bytes x %6d:	%7.3fµs, %s\n",
+			       object_size, count,
+			       elapsed(&start, &end, count),
+			       bytes_per_sec((char *)buf, object_size/elapsed(&start, &end, count)*1e6));
 			fflush(stdout);
 		}
 	}
 
+	for (c = cache; c->level != -1; c++) {
+		drmtest_subtest_block(c->name) {
+			gem_set_caching(fd, dst, c->level);
+
+			for (count = 1; count <= 1<<17; count <<= 1) {
+				struct timeval start, end;
+
+				gettimeofday(&start, NULL);
+				do_gem_read(fd, dst, src, object_size, count);
+				gettimeofday(&end, NULL);
+				printf("Time to %s pread %d bytes x %6d:	%7.3fµs, %s\n",
+						c->name, object_size, count,
+						elapsed(&start, &end, count),
+						bytes_per_sec((char *)buf, object_size/elapsed(&start, &end, count)*1e6));
+				fflush(stdout);
+			}
+		}
+	}
+
 	free(src);
 	gem_close(fd, dst);
 
 	close(fd);
 
-	return 0;
+	return drmtest_retval();
 }
diff --git a/tests/gem_pread_after_blit.c b/tests/gem_pread_after_blit.c
index 7375000..71dab34 100644
--- a/tests/gem_pread_after_blit.c
+++ b/tests/gem_pread_after_blit.c
@@ -131,11 +131,12 @@ static void do_test(int fd, int cache_level,
 		    int loop)
 {
 	if (cache_level != -1) {
-		if (gem_set_caching(fd, tmp[0]->handle, cache_level) ||
-		    gem_set_caching(fd, tmp[1]->handle, cache_level))
-			return;
+		gem_set_caching(fd, tmp[0]->handle, cache_level);
+		gem_set_caching(fd, tmp[1]->handle, cache_level);
 	}
 
+	printf("meh");
+
 	do {
 		/* First, do a full-buffer read after blitting */
 		intel_copy_bo(batch, tmp[0], src[0], width, height);
@@ -235,5 +236,5 @@ main(int argc, char **argv)
 
 	close(fd);
 
-	return 0;
+	return drmtest_retval();
 }
diff --git a/tests/gem_pwrite.c b/tests/gem_pwrite.c
index f939b9f..bd9d9cd 100644
--- a/tests/gem_pwrite.c
+++ b/tests/gem_pwrite.c
@@ -102,7 +102,10 @@ int main(int argc, char **argv)
 
 	drmtest_skip_on_simulation();
 
-	if (argc > 1)
+	drmtest_subtest_init(argc, argv);
+	drmtest_skip_on_simulation();
+
+	if (argc > 1 && atoi(argv[1]))
 		object_size = atoi(argv[1]);
 	if (object_size == 0)
 		object_size = OBJECT_SIZE;
@@ -113,35 +116,38 @@ int main(int argc, char **argv)
 	dst = gem_create(fd, object_size);
 	src = malloc(object_size);
 
-	for (count = 1; count <= 1<<17; count <<= 1) {
-		struct timeval start, end;
-
-		gettimeofday(&start, NULL);
-		do_gem_write(fd, dst, src, object_size, count);
-		gettimeofday(&end, NULL);
-		printf("Time to pwrite %d bytes x %6d:	%7.3fµs, %s\n",
-		       object_size, count,
-		       elapsed(&start, &end, count),
-		       bytes_per_sec((char *)buf, object_size/elapsed(&start, &end, count)*1e6));
-		fflush(stdout);
-	}
-
-	for (c = cache; c->level != -1; c++) {
-		if (gem_set_caching(fd, dst, c->level))
-			continue;
-
+	drmtest_subtest_block("normal") {
 		for (count = 1; count <= 1<<17; count <<= 1) {
 			struct timeval start, end;
 
 			gettimeofday(&start, NULL);
 			do_gem_write(fd, dst, src, object_size, count);
 			gettimeofday(&end, NULL);
-			printf("Time to %s pwrite %d bytes x %6d:	%7.3fµs, %s\n",
-			       c->level, object_size, count,
+			printf("Time to pwrite %d bytes x %6d:	%7.3fµs, %s\n",
+			       object_size, count,
 			       elapsed(&start, &end, count),
 			       bytes_per_sec((char *)buf, object_size/elapsed(&start, &end, count)*1e6));
 			fflush(stdout);
+		}
+	}
+
+	for (c = cache; c->level != -1; c++) {
+		drmtest_subtest_block(c->name) {
+			gem_set_caching(fd, dst, c->level);
+
+			for (count = 1; count <= 1<<17; count <<= 1) {
+				struct timeval start, end;
+
+				gettimeofday(&start, NULL);
+				do_gem_write(fd, dst, src, object_size, count);
+				gettimeofday(&end, NULL);
+				printf("Time to %s pwrite %d bytes x %6d:	%7.3fµs, %s\n",
+				       c->level, object_size, count,
+				       elapsed(&start, &end, count),
+				       bytes_per_sec((char *)buf, object_size/elapsed(&start, &end, count)*1e6));
+				fflush(stdout);
 			}
+		}
 	}
 
 	free(src);
@@ -149,5 +155,5 @@ int main(int argc, char **argv)
 
 	close(fd);
 
-	return 0;
+	return drmtest_retval();
 }
diff --git a/tests/gem_pwrite_pread.c b/tests/gem_pwrite_pread.c
index d29c531..c867609 100644
--- a/tests/gem_pwrite_pread.c
+++ b/tests/gem_pwrite_pread.c
@@ -398,114 +398,114 @@ int main(int argc, char **argv)
 	src = gem_create(fd, object_size);
 	tmp = malloc(object_size);
 
-	if (gem_set_caching(fd, src, 0) == 0 &&
-	    gem_set_caching(fd, dst, 0) == 0) {
-		drmtest_subtest_block("uncached-copy-correctness")
-			test_copy(fd, src, dst, tmp, object_size);
-		drmtest_subtest_block("uncached-copy-performance") {
-			for (count = 1; count <= 1<<17; count <<= 1) {
-				struct timeval start, end;
-
-				gettimeofday(&start, NULL);
-				copy(fd, src, dst, tmp, object_size, count);
-				gettimeofday(&end, NULL);
-				printf("Time to uncached copy %d bytes x %6d:	%7.3fµs, %s\n",
-				       object_size, count,
-				       elapsed(&start, &end, count),
-				       bytes_per_sec((char *)buf, object_size/elapsed(&start, &end, count)*1e6));
-				fflush(stdout);
-			}
+	gem_set_caching(fd, src, 0);
+	gem_set_caching(fd, dst, 0);
+
+	drmtest_subtest_block("uncached-copy-correctness")
+		test_copy(fd, src, dst, tmp, object_size);
+	drmtest_subtest_block("uncached-copy-performance") {
+		for (count = 1; count <= 1<<17; count <<= 1) {
+			struct timeval start, end;
+
+			gettimeofday(&start, NULL);
+			copy(fd, src, dst, tmp, object_size, count);
+			gettimeofday(&end, NULL);
+			printf("Time to uncached copy %d bytes x %6d:	%7.3fµs, %s\n",
+			       object_size, count,
+			       elapsed(&start, &end, count),
+			       bytes_per_sec((char *)buf, object_size/elapsed(&start, &end, count)*1e6));
+			fflush(stdout);
 		}
+	}
 
-		drmtest_subtest_block("uncached-pwrite-blt-gtt_mmap-correctness")
-			test_as_gtt_mmap(fd, src, dst, object_size);
-		drmtest_subtest_block("uncached-pwrite-blt-gtt_mmap-performance") {
-			for (count = 1; count <= 1<<17; count <<= 1) {
-				struct timeval start, end;
-
-				gettimeofday(&start, NULL);
-				as_gtt_mmap(fd, src, dst, tmp, object_size, count);
-				gettimeofday(&end, NULL);
-				printf("** mmap uncached copy %d bytes x %6d:	%7.3fµs, %s\n",
-				       object_size, count,
-				       elapsed(&start, &end, count),
-				       bytes_per_sec((char *)buf, object_size/elapsed(&start, &end, count)*1e6));
-				fflush(stdout);
-			}
+	drmtest_subtest_block("uncached-pwrite-blt-gtt_mmap-correctness")
+		test_as_gtt_mmap(fd, src, dst, object_size);
+	drmtest_subtest_block("uncached-pwrite-blt-gtt_mmap-performance") {
+		for (count = 1; count <= 1<<17; count <<= 1) {
+			struct timeval start, end;
+
+			gettimeofday(&start, NULL);
+			as_gtt_mmap(fd, src, dst, tmp, object_size, count);
+			gettimeofday(&end, NULL);
+			printf("** mmap uncached copy %d bytes x %6d:	%7.3fµs, %s\n",
+			       object_size, count,
+			       elapsed(&start, &end, count),
+			       bytes_per_sec((char *)buf, object_size/elapsed(&start, &end, count)*1e6));
+			fflush(stdout);
 		}
 	}
 
-	if (gem_set_caching(fd, src, 1) == 0 &&
-	    gem_set_caching(fd, dst, 1) == 0) {
-		drmtest_subtest_block("snooped-copy-correctness")
-			test_copy(fd, src, dst, tmp, object_size);
-		drmtest_subtest_block("snooped-copy-performance") {
-			for (count = 1; count <= 1<<17; count <<= 1) {
-				struct timeval start, end;
-
-				gettimeofday(&start, NULL);
-				copy(fd, src, dst, tmp, object_size, count);
-				gettimeofday(&end, NULL);
-				printf("Time to snooped copy %d bytes x %6d:	%7.3fµs, %s\n",
-				       object_size, count,
-				       elapsed(&start, &end, count),
-				       bytes_per_sec((char *)buf, object_size/elapsed(&start, &end, count)*1e6));
-				fflush(stdout);
-			}
+	gem_set_caching(fd, src, 1);
+	gem_set_caching(fd, dst, 1);
+
+	drmtest_subtest_block("snooped-copy-correctness")
+		test_copy(fd, src, dst, tmp, object_size);
+	drmtest_subtest_block("snooped-copy-performance") {
+		for (count = 1; count <= 1<<17; count <<= 1) {
+			struct timeval start, end;
+
+			gettimeofday(&start, NULL);
+			copy(fd, src, dst, tmp, object_size, count);
+			gettimeofday(&end, NULL);
+			printf("Time to snooped copy %d bytes x %6d:	%7.3fµs, %s\n",
+			       object_size, count,
+			       elapsed(&start, &end, count),
+			       bytes_per_sec((char *)buf, object_size/elapsed(&start, &end, count)*1e6));
+			fflush(stdout);
 		}
+	}
 
-		drmtest_subtest_block("snooped-pwrite-blt-cpu_mmap-correctness")
-			test_as_cpu_mmap(fd, src, dst, object_size);
-		drmtest_subtest_block("snooped-pwrite-blt-cpu_mmap-performance") {
-			for (count = 1; count <= 1<<17; count <<= 1) {
-				struct timeval start, end;
-
-				gettimeofday(&start, NULL);
-				as_cpu_mmap(fd, src, dst, tmp, object_size, count);
-				gettimeofday(&end, NULL);
-				printf("** mmap snooped copy %d bytes x %6d:	%7.3fµs, %s\n",
-				       object_size, count,
-				       elapsed(&start, &end, count),
-				       bytes_per_sec((char *)buf, object_size/elapsed(&start, &end, count)*1e6));
-				fflush(stdout);
-			}
+	drmtest_subtest_block("snooped-pwrite-blt-cpu_mmap-correctness")
+		test_as_cpu_mmap(fd, src, dst, object_size);
+	drmtest_subtest_block("snooped-pwrite-blt-cpu_mmap-performance") {
+		for (count = 1; count <= 1<<17; count <<= 1) {
+			struct timeval start, end;
+
+			gettimeofday(&start, NULL);
+			as_cpu_mmap(fd, src, dst, tmp, object_size, count);
+			gettimeofday(&end, NULL);
+			printf("** mmap snooped copy %d bytes x %6d:	%7.3fµs, %s\n",
+			       object_size, count,
+			       elapsed(&start, &end, count),
+			       bytes_per_sec((char *)buf, object_size/elapsed(&start, &end, count)*1e6));
+			fflush(stdout);
 		}
 	}
 
-	if (gem_set_caching(fd, src, 2) == 0 &&
-	    gem_set_caching(fd, dst, 2) == 0) {
-		drmtest_subtest_block("display-copy-correctness")
-			test_copy(fd, src, dst, tmp, object_size);
-		drmtest_subtest_block("display-copy-performance") {
-			for (count = 1; count <= 1<<17; count <<= 1) {
-				struct timeval start, end;
-
-				gettimeofday(&start, NULL);
-				copy(fd, src, dst, tmp, object_size, count);
-				gettimeofday(&end, NULL);
-				printf("Time to display copy %d bytes x %6d:	%7.3fµs, %s\n",
-				       object_size, count,
-				       elapsed(&start, &end, count),
-				       bytes_per_sec((char *)buf, object_size/elapsed(&start, &end, count)*1e6));
-				fflush(stdout);
-			}
+	gem_set_caching(fd, src, 2);
+	gem_set_caching(fd, dst, 2);
+
+	drmtest_subtest_block("display-copy-correctness")
+		test_copy(fd, src, dst, tmp, object_size);
+	drmtest_subtest_block("display-copy-performance") {
+		for (count = 1; count <= 1<<17; count <<= 1) {
+			struct timeval start, end;
+
+			gettimeofday(&start, NULL);
+			copy(fd, src, dst, tmp, object_size, count);
+			gettimeofday(&end, NULL);
+			printf("Time to display copy %d bytes x %6d:	%7.3fµs, %s\n",
+			       object_size, count,
+			       elapsed(&start, &end, count),
+			       bytes_per_sec((char *)buf, object_size/elapsed(&start, &end, count)*1e6));
+			fflush(stdout);
 		}
+	}
 
-		drmtest_subtest_block("display-pwrite-blt-gtt_mmap-correctness")
-			test_as_gtt_mmap(fd, src, dst, object_size);
-		drmtest_subtest_block("display-pwrite-blt-gtt_mmap-performance") {
-			for (count = 1; count <= 1<<17; count <<= 1) {
-				struct timeval start, end;
-
-				gettimeofday(&start, NULL);
-				as_gtt_mmap(fd, src, dst, tmp, object_size, count);
-				gettimeofday(&end, NULL);
-				printf("** mmap display copy %d bytes x %6d:	%7.3fµs, %s\n",
-				       object_size, count,
-				       elapsed(&start, &end, count),
-				       bytes_per_sec((char *)buf, object_size/elapsed(&start, &end, count)*1e6));
-				fflush(stdout);
-			}
+	drmtest_subtest_block("display-pwrite-blt-gtt_mmap-correctness")
+		test_as_gtt_mmap(fd, src, dst, object_size);
+	drmtest_subtest_block("display-pwrite-blt-gtt_mmap-performance") {
+		for (count = 1; count <= 1<<17; count <<= 1) {
+			struct timeval start, end;
+
+			gettimeofday(&start, NULL);
+			as_gtt_mmap(fd, src, dst, tmp, object_size, count);
+			gettimeofday(&end, NULL);
+			printf("** mmap display copy %d bytes x %6d:	%7.3fµs, %s\n",
+			       object_size, count,
+			       elapsed(&start, &end, count),
+			       bytes_per_sec((char *)buf, object_size/elapsed(&start, &end, count)*1e6));
+			fflush(stdout);
 		}
 	}
 
@@ -515,5 +515,5 @@ int main(int argc, char **argv)
 
 	close(fd);
 
-	return 0;
+	return drmtest_retval();
 }
-- 
1.8.3.2




More information about the Intel-gfx mailing list