/* * Copyright © 2012 Blaž Tomažič * * 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. */ /** * @file unload-compiler.c * * Test API function: * * * cl_int clUnloadCompiler (void) */ #define CL_USE_DEPRECATED_OPENCL_1_1_APIS #include "piglit-framework-cl-api.h" PIGLIT_CL_API_TEST_CONFIG_BEGIN config.name = "clUnloadCompiler"; config.version_min = 10; config.version_max = 12; config.run_per_device = true; config.create_context = true; PIGLIT_CL_API_TEST_CONFIG_END char* dummy_kernel = "kernel void dummy_kernel() {}"; enum piglit_result piglit_cl_test(const int argc, const char** argv, const struct piglit_cl_api_test_config* config, const struct piglit_cl_api_test_env* env) { cl_int errNo; cl_program program; /*** Normal usage ***/ program = piglit_cl_build_program_with_source(env->context, 1, &dummy_kernel, ""); /* Always returns CL_SUCCESS */ errNo = clUnloadCompiler(); if(!piglit_cl_check_error(errNo, CL_SUCCESS)) { fprintf(stderr, "Failed (error code: %s): Unload compiler.\n", piglit_cl_get_error_name(errNo)); return PIGLIT_FAIL; } /* Building again reloads compiler */ clReleaseProgram(program); program = piglit_cl_build_program_with_source(env->context, 1, &dummy_kernel, ""); clReleaseProgram(program); return PIGLIT_PASS; }