[Piglit] [PATCH 07/11] egl_android_native_fence_sync: Create fence without current context.
Rafael Antognolli
rafael.antognolli at intel.com
Thu Oct 27 23:19:06 UTC 2016
Verify that EGL_NO_SYNC_KHR is returned and an EGL_BAD_MATCH error is
generated.
Signed-off-by: Rafael Antognolli <rafael.antognolli at intel.com>
---
.../egl_android_native_fence_sync.c | 43 ++++++++++++++++++++++
1 file changed, 43 insertions(+)
diff --git a/tests/egl/spec/egl_android_native_fence_sync/egl_android_native_fence_sync.c b/tests/egl/spec/egl_android_native_fence_sync/egl_android_native_fence_sync.c
index eb5042b..7547f56 100644
--- a/tests/egl/spec/egl_android_native_fence_sync/egl_android_native_fence_sync.c
+++ b/tests/egl/spec/egl_android_native_fence_sync/egl_android_native_fence_sync.c
@@ -680,6 +680,44 @@ cleanup:
return result;
}
+/**
+ * Verify that eglCreateSyncKHR emits correct error when no context is current.
+ *
+ * From the EGL_ANDROID_native_fence_sync spec:
+ *
+ * If <type> is EGL_SYNC_FENCE_KHR or EGL_SYNC_NATIVE_FENCE_ANDROID and no
+ * context is current for the bound API (i.e., eglGetCurrentContext
+ * returns EGL_NO_CONTEXT), EGL_NO_SYNC_KHR is returned and an
+ * EGL_BAD_MATCH error is generated.
+ */
+static enum piglit_result
+test_eglCreateSyncKHR_native_no_current_context(void *test_data)
+{
+ enum piglit_result result = PIGLIT_PASS;
+ EGLSyncKHR sync = 0;
+
+ result = test_setup();
+ if (result != PIGLIT_PASS) {
+ return result;
+ }
+ eglMakeCurrent(g_dpy, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT);
+
+ sync = peglCreateSyncKHR(g_dpy, EGL_SYNC_NATIVE_FENCE_ANDROID, NULL);
+ if (sync != EGL_NO_SYNC_KHR) {
+ piglit_loge("eglCreateSyncKHR() succeeded when no context was "
+ "current");
+ peglDestroySyncKHR(g_dpy, sync);
+ result = PIGLIT_FAIL;
+ }
+ if (!piglit_check_egl_error(EGL_BAD_MATCH)) {
+ piglit_loge("eglCreateSyncKHR emitted wrong error");
+ result = PIGLIT_FAIL;
+ }
+
+ test_cleanup(sync, &result);
+ return result;
+}
+
static const struct piglit_subtest fence_sync_subtests[] = {
{
"eglCreateSyncKHR_native_no_fence",
@@ -711,6 +749,11 @@ static const struct piglit_subtest fence_sync_subtests[] = {
"eglCreateSyncKHR_wrong_display_same_thread",
test_eglCreateSyncKHR_native_wrong_display_same_thread,
},
+ {
+ "eglCreateSyncKHR_native_no_current_context",
+ "eglCreateSyncKHR_native_no_current_context",
+ test_eglCreateSyncKHR_native_no_current_context,
+ },
{0},
};
--
2.7.4
More information about the Piglit
mailing list