summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2013-03-11 14:16:27 +0000
committerChris Wilson <chris@chris-wilson.co.uk>2013-03-11 16:41:13 +0000
commitcffdd1eed0ca344142c165788ce7a31b80f1f55f (patch)
tree46bfba633599811a132ba35dc95679fd16ce1df8 /test
parent4fb7be0a0d4bf027ed254399b6b538e979f525f2 (diff)
test: Try to exercise races between DRI2SwapBuffers and CloseWindow
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'test')
-rw-r--r--test/Makefile.am1
-rw-r--r--test/dri2-race.c113
2 files changed, 114 insertions, 0 deletions
diff --git a/test/Makefile.am b/test/Makefile.am
index 0f9bd7d0..96729c1c 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -17,6 +17,7 @@ stress_TESTS = \
render-copy-alphaless \
mixed-stress \
dri2-swap \
+ dri2-race \
$(NULL)
check_PROGRAMS = $(stress_TESTS)
diff --git a/test/dri2-race.c b/test/dri2-race.c
new file mode 100644
index 00000000..01b023a1
--- /dev/null
+++ b/test/dri2-race.c
@@ -0,0 +1,113 @@
+#include <stdint.h>
+#include <stdio.h>
+#include <stdlib.h>
+
+#include <X11/Xlib.h>
+#include <X11/Xutil.h>
+#include <X11/extensions/Xfixes.h>
+#include <unistd.h>
+#include <fcntl.h>
+#include <string.h>
+#include <time.h>
+
+#include <xf86drm.h>
+#include <drm.h>
+
+#include "dri2.h"
+
+#define COUNT 60
+
+static int dri2_open(Display *dpy)
+{
+ drm_auth_t auth;
+ char *driver, *device;
+ int fd;
+
+ if (!DRI2Connect(dpy, DefaultRootWindow(dpy), &driver, &device))
+ return -1;
+
+ printf ("Connecting to %s driver on %s\n", driver, device);
+
+ fd = open("/dev/dri/card0", O_RDWR);
+ if (fd < 0)
+ return -1;
+
+ if (drmIoctl(fd, DRM_IOCTL_GET_MAGIC, &auth))
+ return -1;
+
+ if (!DRI2Authenticate(dpy, DefaultRootWindow(dpy), auth.magic))
+ return -1;
+
+ return fd;
+}
+
+static void run(Display *dpy, int width, int height,
+ unsigned int *attachments, int nattachments,
+ const char *name)
+{
+ Window win;
+ XSetWindowAttributes attr;
+ int count, loop;
+ DRI2Buffer *buffers;
+
+ /* Be nasty and install a fullscreen window on top so that we
+ * can guarantee we do not get clipped by children.
+ */
+ attr.override_redirect = 1;
+ loop = 100;
+ do {
+ win = XCreateWindow(dpy, DefaultRootWindow(dpy),
+ 0, 0, width, height, 0,
+ DefaultDepth(dpy, DefaultScreen(dpy)),
+ InputOutput,
+ DefaultVisual(dpy, DefaultScreen(dpy)),
+ CWOverrideRedirect, &attr);
+ XMapWindow(dpy, win);
+
+ DRI2CreateDrawable(dpy, win);
+
+ buffers = DRI2GetBuffers(dpy, win, &width, &height,
+ attachments, nattachments, &count);
+ if (count != nattachments)
+ return;
+
+ free(buffers);
+ for (count = 0; count < loop; count++)
+ DRI2SwapBuffers(dpy, win, 0, 0, 0);
+ XDestroyWindow(dpy, win);
+ } while (--loop);
+
+ XSync(dpy, 1);
+ sleep(2);
+ XSync(dpy, 1);
+}
+
+int main(void)
+{
+ Display *dpy;
+ int width, height, fd;
+ unsigned int attachments[] = {
+ DRI2BufferBackLeft,
+ DRI2BufferFrontLeft,
+ };
+
+ dpy = XOpenDisplay (NULL);
+ if (dpy == NULL)
+ return 77;
+
+ fd = dri2_open(dpy);
+ if (fd < 0)
+ return 1;
+
+ width = WidthOfScreen(DefaultScreenOfDisplay(dpy));
+ height = HeightOfScreen(DefaultScreenOfDisplay(dpy));
+ run(dpy, width, height, attachments, 1, "fullscreen");
+ run(dpy, width, height, attachments, 2, "fullscreen (with front)");
+
+ width /= 2;
+ height /= 2;
+ run(dpy, width, height, attachments, 1, "windowed");
+ run(dpy, width, height, attachments, 2, "windowed (with front)");
+
+ return 0;
+}