[Piglit] [PATCH 09/11] egl_khr_create_context: Verify that the invalid attributes are rejected

Ian Romanick idr at freedesktop.org
Wed Aug 1 10:22:12 PDT 2012


On 07/31/2012 06:38 PM, Matt Turner wrote:
> ---
>   tests/all_egl.tests                                |    1 +
>   .../spec/egl_khr_create_context/CMakeLists.gl.txt  |    1 +
>   .../egl_khr_create_context/invalid-attribute.c     |  118 ++++++++++++++++++++
>   3 files changed, 120 insertions(+), 0 deletions(-)
>   create mode 100644 tests/egl/spec/egl_khr_create_context/invalid-attribute.c
>
> diff --git a/tests/all_egl.tests b/tests/all_egl.tests
> index 97b378f..db5cd44 100644
> --- a/tests/all_egl.tests
> +++ b/tests/all_egl.tests
> @@ -25,3 +25,4 @@ create_context['default minor version'] = plain_test(['egl-create-context-defaul
>   create_context['valid attribute empty'] = plain_test(['egl-create-context-valid-attribute-empty'])
>   create_context['NULL valid attribute'] = plain_test(['egl-create-context-valid-attribute-null'])
>   create_context['invalid OpenGL version'] = plain_test(['egl-create-context-invalid-gl-version'])
> +create_context['invalid attribute'] = plain_test(['egl-create-context-invalid-attribute'])
> diff --git a/tests/egl/spec/egl_khr_create_context/CMakeLists.gl.txt b/tests/egl/spec/egl_khr_create_context/CMakeLists.gl.txt
> index e8793a8..0b03b3c 100644
> --- a/tests/egl/spec/egl_khr_create_context/CMakeLists.gl.txt
> +++ b/tests/egl/spec/egl_khr_create_context/CMakeLists.gl.txt
> @@ -16,5 +16,6 @@ piglit_add_executable (egl-create-context-default-minor-version default-minor-ve
>   piglit_add_executable (egl-create-context-valid-attribute-empty valid-attribute-empty.c common.c)
>   piglit_add_executable (egl-create-context-valid-attribute-null valid-attribute-null.c common.c)
>   piglit_add_executable (egl-create-context-invalid-gl-version invalid-gl-version.c common.c)
> +piglit_add_executable (egl-create-context-invalid-attribute invalid-attribute.c common.c)
>
>   # vim: ft=cmake:
> diff --git a/tests/egl/spec/egl_khr_create_context/invalid-attribute.c b/tests/egl/spec/egl_khr_create_context/invalid-attribute.c
> new file mode 100644
> index 0000000..ed95748
> --- /dev/null
> +++ b/tests/egl/spec/egl_khr_create_context/invalid-attribute.c
> @@ -0,0 +1,118 @@
> +/* Copyright © 2012 Intel Corporation
> + *
> + * Permission is hereby granted, free of charge, to any person obtaining a
> + * copy of this software and associated documentation files (the "Software"),
> + * to deal in the Software without restriction, including without limitation
> + * the rights to use, copy, modify, merge, publish, distribute, sublicense,
> + * and/or sell copies of the Software, and to permit persons to whom the
> + * Software is furnished to do so, subject to the following conditions:
> + *
> + * The above copyright notice and this permission notice (including the next
> + * paragraph) shall be included in all copies or substantial portions of the
> + * Software.
> + *
> + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
> + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
> + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
> + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
> + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
> + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
> + * IN THE SOFTWARE.
> + */
> +#include "piglit-util-gl-common.h"
> +#include "piglit-util-egl.h"
> +#include "common.h"
> +
> +static bool try_attribute(int attribute)
> +{
> +	/* If the attribute is EGL_CONTEXT_PROFILE_MASK_KHR [sic], use a valid
> +	 * value for that attribute.  This ensures that the attribute is
> +	 * rejected for the correct reason.
> +	 */
> +	const EGLint attribs[] = {
> +		attribute,
> +		(attribute == EGL_CONTEXT_OPENGL_PROFILE_MASK_KHR)
> +		? EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT_KHR : 0,
> +		EGL_NONE
> +	};
> +	bool pass = true;
> +
> +	ctx = eglCreateContext(egl_dpy, cfg, EGL_NO_CONTEXT, attribs);
> +	if (ctx != NULL) {
> +		fprintf(stderr,
> +			"Created OpenGL context with invalid attribute "
> +			"0x%08x, but this should have failed.\n",
> +			attribute);
> +		eglDestroyContext(egl_dpy, ctx);
> +		pass = false;
> +	}
> +
> +	/* The EGL_KHR_create_context spec says:
> +	 *
> +	 *     "* If an attribute name or attribute value in <attrib_list> is not
> +	 *        recognized (including unrecognized bits in bitmask attributes),
> +	 *        then an EGL_BAD_ATTRIBUTE error is generated."
> +	 */
> +	piglit_expect_egl_error(EGL_BAD_ATTRIBUTE, PIGLIT_FAIL);
> +
> +	return pass;
> +}
> +
> +int main(int argc, char **argv)
> +{
> +	EGLint bad_attributes[] = {
> +		0xffff0000,
> +		EGL_SAMPLE_BUFFERS
> +	};
> +	bool pass = true;
> +	unsigned i;
> +	int gl_version;
> +
> +	EGL_KHR_create_context_setup();
> +
> +	for (i = 0; i < ARRAY_SIZE(bad_attributes); i++) {
> +		pass = try_attribute(bad_attributes[i]) && pass;
> +	}
> +
> +	/* Create a context so that we can determine the GL version. */
> +	ctx = eglCreateContext(egl_dpy, cfg, EGL_NO_CONTEXT, NULL);
> +	if (ctx == EGL_NO_CONTEXT) {
> +		fprintf(stderr, "eglCreateContext() failed\n");
> +		piglit_report_result(PIGLIT_FAIL);
> +	}
> +
> +	if (!eglMakeCurrent(egl_dpy, EGL_NO_SURFACE, EGL_NO_SURFACE, ctx)) {

Note that a 1x1 pixmap is *not* needed here because surfaceless 
rendering is defined for desktop OpenGL 3.0+ contexts.

> +		fprintf(stderr, "eglMakeCurrent() failed\n");
> +		piglit_report_result(PIGLIT_FAIL);
> +	}
> +
> +	piglit_dispatch_default_init();
> +
> +	gl_version = piglit_get_gl_version();
> +
> +	eglMakeCurrent(egl_dpy, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT);
> +	eglDestroyContext(egl_dpy, ctx);
> +
> +	/* The EGL_KHR_create_context spec says:
> +	 *
> +	 * "* If an OpenGL context is requested, the requested version is
> +	 *    greater than 3.2, and the value for attribute
> +	 *    EGL_CONTEXT_PROFILE_MASK_KHR [sic] has no bits set; has any bits set
> +	 *    other than EGL_CONTEXT_CORE_PROFILE_BIT_KHR [sic] and
> +	 *    EGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_KHR [sic]; has more than one of
> +	 *    these bits set; or if the implementation does not support the
> +	 *    requested profile, then an EGL_BAD_PROFILE_KHR error is
> +	 *    generated."
> +	 */
> +
> +	if (gl_version < 32) {
> +		pass = try_attribute(EGL_CONTEXT_OPENGL_PROFILE_MASK_KHR)
> +		       && pass;
> +	}
> +
> +	EGL_KHR_create_context_teardown();
> +
> +	piglit_report_result(pass ? PIGLIT_PASS : PIGLIT_FAIL);
> +
> +	return EXIT_SUCCESS;
> +}
>




More information about the Piglit mailing list