diff options
author | Andres Rodriguez <andresx7@gmail.com> | 2017-12-21 19:21:49 -0500 |
---|---|---|
committer | Andres Rodriguez <andresx7@gmail.com> | 2018-01-30 15:23:47 -0500 |
commit | 588bf15fb1abeb56d0c2ed31924033021fd8a1d4 (patch) | |
tree | deabe798a19d462d43dc52836eb5c74f82fd2b49 /tests | |
parent | fa4552994016d9009b50fba333088d12fe10a1f1 (diff) |
ext_memory_object_fd: add api error tests
The spec doesn't define any errors for ext_memory_object_fd, but do at
least a basic sanity test.
Signed-off-by: Andres Rodriguez <andresx7@gmail.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/all.py | 6 | ||||
-rw-r--r-- | tests/spec/CMakeLists.txt | 1 | ||||
-rw-r--r-- | tests/spec/ext_memory_object_fd/CMakeLists.gl.txt | 14 | ||||
-rw-r--r-- | tests/spec/ext_memory_object_fd/CMakeLists.txt | 1 | ||||
-rw-r--r-- | tests/spec/ext_memory_object_fd/api-errors.c | 85 |
5 files changed, 107 insertions, 0 deletions
diff --git a/tests/all.py b/tests/all.py index 897a44d76..6d4e887b3 100644 --- a/tests/all.py +++ b/tests/all.py @@ -2289,6 +2289,12 @@ with profile.test_list.group_manager( grouptools.join('spec', 'EXT_memory_object')) as g: g(['ext_memory_object-api-errors'], 'api-errors') +# Group EXT_memory_object_fd tests +with profile.test_list.group_manager( + PiglitGLTest, + grouptools.join('spec', 'EXT_memory_object_fd')) as g: + g(['ext_memory_object_fd-api-errors'], 'api-errors') + # Group EXT_semaphore tests with profile.test_list.group_manager( PiglitGLTest, diff --git a/tests/spec/CMakeLists.txt b/tests/spec/CMakeLists.txt index e5a3f548f..1f9d81064 100644 --- a/tests/spec/CMakeLists.txt +++ b/tests/spec/CMakeLists.txt @@ -90,6 +90,7 @@ add_subdirectory (ext_framebuffer_multisample) add_subdirectory (ext_framebuffer_multisample_blit_scaled) add_subdirectory (ext_framebuffer_object) add_subdirectory (ext_memory_object) +add_subdirectory (ext_memory_object_fd) add_subdirectory (ext_packed_depth_stencil) add_subdirectory (ext_packed_float) add_subdirectory (ext_semaphore) diff --git a/tests/spec/ext_memory_object_fd/CMakeLists.gl.txt b/tests/spec/ext_memory_object_fd/CMakeLists.gl.txt new file mode 100644 index 000000000..710462a04 --- /dev/null +++ b/tests/spec/ext_memory_object_fd/CMakeLists.gl.txt @@ -0,0 +1,14 @@ +include_directories( + ${GLEXT_INCLUDE_DIR} + ${OPENGL_INCLUDE_PATH} +) + +link_libraries ( + piglitutil_${piglit_target_api} + ${OPENGL_gl_LIBRARY} +) + +piglit_add_executable (ext_memory_object_fd-api-errors api-errors.c) + + +# vim: ft=cmake: diff --git a/tests/spec/ext_memory_object_fd/CMakeLists.txt b/tests/spec/ext_memory_object_fd/CMakeLists.txt new file mode 100644 index 000000000..144a306f4 --- /dev/null +++ b/tests/spec/ext_memory_object_fd/CMakeLists.txt @@ -0,0 +1 @@ +piglit_include_target_api() diff --git a/tests/spec/ext_memory_object_fd/api-errors.c b/tests/spec/ext_memory_object_fd/api-errors.c new file mode 100644 index 000000000..8ad89fd94 --- /dev/null +++ b/tests/spec/ext_memory_object_fd/api-errors.c @@ -0,0 +1,85 @@ +/* + * Copyright (c) 2017 Valve 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 on + * the rights to use, copy, modify, merge, publish, distribute, sub license, + * 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 NON-INFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS AND/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. + */ + +/** + * Tests that api errors are thrown where expected for the + * GL_EXT_memory_object_fd extension. + */ + +#include "piglit-util-gl.h" + +PIGLIT_GL_TEST_CONFIG_BEGIN + + config.supports_gl_compat_version = 10; + config.window_visual = PIGLIT_GL_VISUAL_RGBA | PIGLIT_GL_VISUAL_DOUBLE; + config.khr_no_error_support = PIGLIT_HAS_ERRORS; + +PIGLIT_GL_TEST_CONFIG_END + +static bool +test_import_memory_object_fd_enum_errors() +{ + GLuint mem; + int fd = -1; + + glCreateMemoryObjectsEXT(1, &mem); + + /** + * The spec does not define any errors for ImportMemoryFdEXT, + * but we should at least make sure this doesn't succeed. + */ + glImportMemoryFdEXT(mem, 1, GL_NONE, fd); + + return piglit_check_gl_error(GL_INVALID_ENUM); +} + +#define X(f, desc) \ + do { \ + const bool subtest_pass = (f); \ + piglit_report_subtest_result(subtest_pass \ + ? PIGLIT_PASS : PIGLIT_FAIL, \ + (desc)); \ + pass = pass && subtest_pass; \ + } while (0) + +enum piglit_result +piglit_display(void) +{ + bool pass = true; + + X(test_import_memory_object_fd_enum_errors(), "import-memory-object-fd-bad-enum"); + + return pass ? PIGLIT_PASS : PIGLIT_FAIL; +} + + +void +piglit_init(int argc, char **argv) +{ + /* From the EXT_external_objects_fd spec: + * + * "GL_EXT_memory_object_fd requires GL_EXT_memory_object" + */ + piglit_require_extension("GL_EXT_memory_object"); + piglit_require_extension("GL_EXT_memory_object_fd"); +} |