test/glx_public_api_core: Fail softer if core contexts aren't available

If you've built Mesa with --disable-texture-float, and try to run the
tests against Xvfb, glx_public_api_core will fail: creating a direct
context with llvmpipe will fail because you don't have
ARB_texture_float, and the internal fallback to an indirect context will
fail because indirect only supports through 1.4. So the server will
throw GLXBadFBConfig at you to say "I don't support core contexts",
which we should interpret as a skip not a failure.

Signed-off-by: Adam Jackson <ajax@redhat.com>
macos/v1.5.9
Adam Jackson 6 years ago
parent 610203a1a4
commit 43ac91170d
  1. 10
      test/glx_public_api_core.c

@ -131,6 +131,12 @@ test_glx_version(void)
return true;
}
static int
error_handler(Display *d, XErrorEvent *ev)
{
return 0;
}
int
main(int argc, char **argv)
{
@ -148,6 +154,7 @@ main(int argc, char **argv)
None
};
GLXContext ctx;
int (*old_handler)(Display *, XErrorEvent *);
dpy = get_display_or_skip();
@ -157,9 +164,12 @@ main(int argc, char **argv)
visinfo = get_glx_visual(dpy);
win = get_glx_window(dpy, visinfo, false);
config = get_fbconfig_for_visinfo(dpy, visinfo);
old_handler = XSetErrorHandler(error_handler);
ctx = glXCreateContextAttribsARB(dpy, config, NULL, True, attribs);
if (ctx == None)
errx(77, "glXCreateContext failed");
XSetErrorHandler(old_handler);
glXMakeCurrent(dpy, win, ctx);

Loading…
Cancel
Save