summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2014-07-20 07:27:58 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2014-07-20 07:28:34 +0100
commit9bb2818a7db1c9dc89379996415511b6cff4bb33 (patch)
treeb0dd781da3e009efbbf00b14b28beb5737286a1a
parent4ae346e7647fd2c01324f1a6d3b37674e858486d (diff)
downloadxorg-driver-xf86-video-intel-9bb2818a7db1c9dc89379996415511b6cff4bb33.tar.gz
dri3-test: Print line number for shm failures
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
-rw-r--r--test/dri3-test.c26
1 files changed, 19 insertions, 7 deletions
diff --git a/test/dri3-test.c b/test/dri3-test.c
index 3fe011a4..c66da313 100644
--- a/test/dri3-test.c
+++ b/test/dri3-test.c
@@ -444,6 +444,7 @@ static int test_shm(Display *dpy, int device,
uint32_t *ptr;
int stride, fd;
int x, y;
+ int line;
if (!can_use_shm(dpy))
return 0;
@@ -478,16 +479,22 @@ static int test_shm(Display *dpy, int device,
printf("Testing write of %dx%d SHM pixmap via DRI3 fd\n", width, height);
fd = dri3_create_fd(dpy, pixmap, &stride);
- if (fd < 0)
+ if (fd < 0) {
+ line = __LINE__;
goto fail;
+ }
handle = gem_import(device, fd);
close(fd);
- if (handle == 0)
+ if (handle == 0) {
+ line = __LINE__;
goto fail;
+ }
- if (gpu_fill(device, handle, width, height, stride, 32, I915_TILING_NONE, pixel))
+ if (gpu_fill(device, handle, width, height, stride, 32, I915_TILING_NONE, pixel)) {
+ line = __LINE__;
goto fail;
+ }
gem_sync(device, handle, CPU);
ptr = (uint32_t *)shm.shmaddr;
@@ -495,6 +502,7 @@ static int test_shm(Display *dpy, int device,
for (y = 0; y < sizeof(y_loc)/sizeof(y_loc[0]); y++)
if (ptr[y_loc[y]*width + x_loc[x]] != pixel) {
printf("pixel[%d, %d]:%d = %08x\n", x, y, 32, ptr[y_loc[y] * width + x_loc[x]]);
+ line = __LINE__;
goto fail;
}
@@ -502,11 +510,15 @@ static int test_shm(Display *dpy, int device,
for (y = 0; y < sizeof(y_loc)/sizeof(y_loc[0]); y++)
if (!check_pixmap(dpy, pixmap,
x_loc[x], y_loc[y],
- pixel, 32))
+ pixel, 32)) {
+ line = __LINE__;
goto fail;
+ }
- if (_x_error_occurred)
+ if (_x_error_occurred) {
+ line = __LINE__;
goto fail;
+ }
out:
gem_close(device, handle);
@@ -516,8 +528,8 @@ out:
return fd != -1;
fail:
- printf("%s failed at (%dx%d)\n",
- __func__, width, height);
+ printf("%s failed at (%dx%d), line %d\n",
+ __func__, width, height, line);
fd = -1;
goto out;
}