[Piglit] [v9 08/13] tests/spec: EXT_image_dma_buf_import missing attributes

Topi Pohjolainen topi.pohjolainen at intel.com
Fri Aug 9 03:43:02 PDT 2013


v2:
   - compile only on platforms that have drm (Eric)
   - use standard drm definitions for fourcc instead of duplicated
     local (Daniel, Eric)
   - removed irrelevant quotes of the spec (Eric)
   - rewritten attribute test vector using a full set which is then
     trimmed down in individual tests (Eric)
   - check that EGL did not take the ownership and revise the
     explanation for it (Eric)
   - use helper variables for width, height and cpp instead
     of repeating the magic numbers over and over again (Eric)
   - use the stride and offset provided by the framework instead of
     hardcoded assumed values (Eric)

v3 (Eric):
   - use properly linked egl-extension calls

v4:
   - add to 'all.tests' (Eric)
   - fix filling of the attribute array (Eric)
   - removed inclusion of standard EGL entrypoints as there is the
     special dispatcher for the test cases to use (Eric)
   - initialised 'pass = true' and used '&& pass'-pattern (Chad, Eric)

Signed-off-by: Topi Pohjolainen <topi.pohjolainen at intel.com>
Reviewed-by: Chad Versace <chad.versace at linux.intel.com>
---
 tests/all.tests                                    |   1 +
 .../ext_image_dma_buf_import/CMakeLists.gles1.txt  |   1 +
 .../ext_image_dma_buf_import/missing_attributes.c  | 162 +++++++++++++++++++++
 3 files changed, 164 insertions(+)
 create mode 100644 tests/spec/ext_image_dma_buf_import/missing_attributes.c

diff --git a/tests/all.tests b/tests/all.tests
index bc8103f..41a8294 100644
--- a/tests/all.tests
+++ b/tests/all.tests
@@ -1762,6 +1762,7 @@ ext_image_dma_buf_import = Group()
 spec['EXT_image_dma_buf_import'] = ext_image_dma_buf_import
 add_plain_test(ext_image_dma_buf_import, 'ext_image_dma_buf_import-invalid_hints')
 add_plain_test(ext_image_dma_buf_import, 'ext_image_dma_buf_import-invalid_attributes')
+add_plain_test(ext_image_dma_buf_import, 'ext_image_dma_buf_import-missing_attributes')
 
 ext_packed_depth_stencil = Group()
 spec['EXT_packed_depth_stencil'] = ext_packed_depth_stencil
diff --git a/tests/spec/ext_image_dma_buf_import/CMakeLists.gles1.txt b/tests/spec/ext_image_dma_buf_import/CMakeLists.gles1.txt
index b55acb8..44ecfa0 100644
--- a/tests/spec/ext_image_dma_buf_import/CMakeLists.gles1.txt
+++ b/tests/spec/ext_image_dma_buf_import/CMakeLists.gles1.txt
@@ -20,6 +20,7 @@ if(LIBDRM_FOUND)
 
 	piglit_add_executable(ext_image_dma_buf_import-invalid_hints invalid_hints.c image_common.c)
 	piglit_add_executable(ext_image_dma_buf_import-invalid_attributes invalid_attributes.c image_common.c)
+	piglit_add_executable(ext_image_dma_buf_import-missing_attributes missing_attributes.c image_common.c)
 endif(LIBDRM_FOUND)
 
 # vim: ft=cmake:
diff --git a/tests/spec/ext_image_dma_buf_import/missing_attributes.c b/tests/spec/ext_image_dma_buf_import/missing_attributes.c
new file mode 100644
index 0000000..888d61f
--- /dev/null
+++ b/tests/spec/ext_image_dma_buf_import/missing_attributes.c
@@ -0,0 +1,162 @@
+/*
+ * Copyright © 2013 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-egl.h"
+#include <unistd.h>
+#include <drm_fourcc.h>
+#include "image_common.h"
+
+/**
+ * @file missing_attributes.c
+ *
+ * Tests that EGL detects missing attributes correctly.
+ *
+ * From the EXT_image_dma_buf_import spec:
+ *
+ * "If <target> is EGL_LINUX_DMA_BUF_EXT, and the list of attributes is
+ *  incomplete, EGL_BAD_PARAMETER is generated."
+ */
+
+PIGLIT_GL_TEST_CONFIG_BEGIN
+
+	config.supports_gl_es_version = 10;
+
+PIGLIT_GL_TEST_CONFIG_END
+
+#define NUM_MANDATORY_ATTRS 6
+
+static bool
+test_missing(int fd, const EGLint *attr)
+{
+	EGLImageKHR img;
+
+	img = eglCreateImageKHR(eglGetCurrentDisplay(), EGL_NO_CONTEXT,
+			EGL_LINUX_DMA_BUF_EXT, (EGLClientBuffer)NULL, attr);
+
+	if (!piglit_check_egl_error(EGL_BAD_PARAMETER)) {
+		if (img)
+			eglDestroyImageKHR(eglGetCurrentDisplay(), img);
+		return false;
+	}
+
+	return true;
+}
+
+static void
+fill_full_set(unsigned w, unsigned h, EGLint fd, EGLint offset, EGLint stride,
+	EGLint *out)
+{
+	/* Reference set containing all the mandatory attributes. */
+	const EGLint all[2 * NUM_MANDATORY_ATTRS] = {
+		EGL_WIDTH, w,
+		EGL_HEIGHT, h,
+		EGL_LINUX_DRM_FOURCC_EXT, DRM_FORMAT_ARGB8888,
+		EGL_DMA_BUF_PLANE0_FD_EXT, fd,
+		EGL_DMA_BUF_PLANE0_OFFSET_EXT, offset,
+		EGL_DMA_BUF_PLANE0_PITCH_EXT, stride
+	};
+
+	memcpy(out, all, sizeof(all));
+}
+
+static void
+fill_one_missing(const EGLint *all, EGLint *out, EGLint missing)
+{
+	unsigned i, j;
+
+	for (i = j = 0; i < NUM_MANDATORY_ATTRS; ++i) {
+		if (all[2 * i] != missing) {
+			out[2 * j + 0] = all[2 * i + 0];
+			out[2 * j + 1] = all[2 * i + 1];
+			++j;
+		}
+	}
+
+	out[2 * j] = EGL_NONE;
+}
+
+/**
+ * Here one tries to create an image with six different attribute sets each
+ * missing one of the mandatory attribute.
+ *
+ * One and same buffer is used for all the tests. Each test is expected to fail
+ * meaning that the ownership is not transferred to the EGL in any point.
+ */
+enum piglit_result
+piglit_display(void)
+{
+	const unsigned w = 2;
+	const unsigned h = 2;
+	const unsigned cpp = 2;
+	const unsigned char pixels[w * h * cpp];
+	EGLint all[2 * NUM_MANDATORY_ATTRS];
+	EGLint missing[2 * (NUM_MANDATORY_ATTRS - 1) + 1];
+	struct piglit_dma_buf *buf;
+	unsigned stride;
+	unsigned offset;
+	int fd;
+	enum piglit_result res;
+	bool pass = true;
+
+	res = piglit_create_dma_buf(w, h, cpp, pixels, w * cpp,
+				&buf, &fd, &stride, &offset);
+	if (res != PIGLIT_PASS)
+		return res;
+
+	fill_full_set(w, h, fd, offset, stride, all);
+
+	fill_one_missing(all, missing, EGL_HEIGHT);
+	pass = test_missing(fd, missing) && pass;
+
+	fill_one_missing(all, missing, EGL_WIDTH);
+	pass = test_missing(fd, missing) && pass;
+
+	fill_one_missing(all, missing, EGL_LINUX_DRM_FOURCC_EXT);
+	pass = test_missing(fd, missing) && pass;
+
+	fill_one_missing(all, missing, EGL_DMA_BUF_PLANE0_FD_EXT);
+	pass = test_missing(fd, missing) && pass;
+
+	fill_one_missing(all, missing, EGL_DMA_BUF_PLANE0_OFFSET_EXT);
+	pass = test_missing(fd, missing) && pass;
+
+	fill_one_missing(all, missing, EGL_DMA_BUF_PLANE0_PITCH_EXT);
+	pass = test_missing(fd, missing) && pass;
+
+	/**
+	 * EGL stack can claim the ownership of the file descriptor only when it
+	 * succeeds. Close the file descriptor here and check that it really
+	 * wasn't closed by EGL.
+	 */
+	pass = (close(fd) == 0) && pass;
+
+	piglit_destroy_dma_buf(buf);
+
+	return pass ? PIGLIT_PASS : PIGLIT_FAIL;
+}
+
+void
+piglit_init(int argc, char **argv)
+{
+	piglit_require_egl_extension("EGL_EXT_image_dma_buf_import");
+}
-- 
1.8.1.2



More information about the Piglit mailing list