1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
|
/*
* 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_semaphore extension.
*/
#include "piglit-util-gl.h"
static const struct piglit_gl_test_config * piglit_config;
#define RESULT(error) piglit_check_gl_error(error) ? PIGLIT_PASS : PIGLIT_FAIL
static enum piglit_result
test_get_unsigned_byte_v_enum_errors(void * unused)
{
GLubyte data[GL_UUID_SIZE_EXT];
glGetUnsignedBytevEXT(UINT32_MAX, data);
return RESULT(GL_INVALID_ENUM);
}
static enum piglit_result
test_get_unsigned_byte_i_v_enum_errors(void * unused)
{
GLubyte data[GL_UUID_SIZE_EXT];
glGetUnsignedBytei_vEXT(UINT32_MAX, 0, data);
return RESULT(GL_INVALID_ENUM);
}
static enum piglit_result
test_get_unsigned_byte_i_v_value_errors(void * unused)
{
GLubyte data[GL_UUID_SIZE_EXT];
GLint numDevices;
glGetIntegerv(GL_NUM_DEVICE_UUIDS_EXT, &numDevices);
if (!piglit_check_gl_error(GL_NO_ERROR))
return PIGLIT_FAIL;
glGetUnsignedBytei_vEXT(GL_DEVICE_UUID_EXT, numDevices + 1, data);
return RESULT(GL_INVALID_VALUE);
}
static enum piglit_result
test_gen_semaphores_value_errors(void * unused)
{
GLuint sem;
glGenSemaphoresEXT(-1, &sem);
return RESULT(GL_INVALID_VALUE);
}
static enum piglit_result
test_delete_semaphores_value_errors(void * unused)
{
GLuint sem;
glDeleteSemaphoresEXT(-1, &sem);
return RESULT(GL_INVALID_VALUE);
}
static enum piglit_result
test_semaphore_parameter_enum_errors(void * unused)
{
GLuint sem;
GLuint64 param;
glGenSemaphoresEXT(1, &sem);
/**
* The spec does not define any valid parameters
* in EXT_external_objects or in EXT_external_objects_fd
*/
glSemaphoreParameterui64vEXT(0, sem, ¶m);
return RESULT(GL_INVALID_ENUM);
}
static enum piglit_result
test_get_semaphore_parameter_enum_errors(void * unused)
{
GLuint sem;
GLuint64 param;
glGenSemaphoresEXT(1, &sem);
glGetSemaphoreParameterui64vEXT(0, sem, ¶m);
return RESULT(GL_INVALID_ENUM);
}
#undef RESULT
#define ADD_TEST(func, name) \
{ \
name, \
name, \
func, \
NULL \
}
static const struct piglit_subtest tests[] = {
ADD_TEST(test_get_unsigned_byte_v_enum_errors, "unsigned-byte-v-bad-enum"),
ADD_TEST(test_get_unsigned_byte_i_v_enum_errors, "unsigned-byte-i-v-bad-enum"),
ADD_TEST(test_get_unsigned_byte_i_v_value_errors, "unsigned-byte-i-v-bad-value"),
ADD_TEST(test_gen_semaphores_value_errors, "gen-semaphores-bad-value"),
ADD_TEST(test_delete_semaphores_value_errors, "gen-semaphores-bad-value"),
ADD_TEST(test_delete_semaphores_value_errors, "gen-semaphores-bad-value"),
ADD_TEST(test_semaphore_parameter_enum_errors, "semaphore-parameter-bad-enum"),
ADD_TEST(test_get_semaphore_parameter_enum_errors, "get-semaphore-parameter-bad-enum"),
{ NULL },
};
#undef ADD_TEST
PIGLIT_GL_TEST_CONFIG_BEGIN
piglit_config = &config;
config.subtests = tests;
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
enum piglit_result
piglit_display(void)
{
enum piglit_result result = PIGLIT_PASS;
piglit_run_selected_subtests(
tests,
piglit_config->selected_subtests,
piglit_config->num_selected_subtests,
result);
return result;
}
void
piglit_init(int argc, char **argv)
{
/* From the EXT_external_objects spec:
*
* "GL_EXT_semaphore requires OpenGL 1.0."
*/
piglit_require_extension("GL_EXT_semaphore");
}
|