Files
OpenCL-CTS/test_common/CMakeLists.txt
Ben Ashbaugh e075026819 test CL_QUEUE_ARRAY_PROPERTIES query (#925)
* OpenCL 3.0 test CL_QUEUE_PROPERTIES_ARRAY

* add verification if requested_size <= CL_DEVICE_QUEUE_ON_DEVICE_MAX_SIZE
* remove test_case - set NULL properties, get not empty array with 0 terminator
* add printing test_case description

* change logic of checking if requested properties are supported by device
depending on host/device type queue.

* fix a few bugs, rename test for consistency

* add utility function for comparing properties

Co-authored-by: Grzegorz Wawiorko <grzegorz.wawiorko@intel.com>
2020-09-01 10:16:18 +01:00

25 lines
564 B
CMake

set(HARNESS_SOURCES
harness/threadTesting.cpp
harness/typeWrappers.cpp
harness/mt19937.cpp
harness/conversions.cpp
harness/rounding_mode.cpp
harness/msvc9.c
harness/crc32.cpp
harness/errorHelpers.cpp
harness/genericThread.cpp
harness/imageHelpers.cpp
harness/kernelHelpers.cpp
harness/deviceInfo.cpp
harness/os_helpers.cpp
harness/parseParameters.cpp
harness/propertyHelpers.cpp
harness/testHarness.cpp
harness/ThreadPool.cpp
miniz/miniz.c
)
add_library(harness STATIC ${HARNESS_SOURCES})