mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-19 06:09:01 +00:00
Remove most remaining clCreate*WithProperties calls in tests that run on 1.2
Don't touch interop suites or code only run with options not required for conformance. Signed-off-by: Kevin Petit <kevin.petit@arm.com>
This commit is contained in:
@@ -141,10 +141,10 @@ test_status InitCL( cl_device_id device )
|
||||
return TEST_FAIL;
|
||||
}
|
||||
|
||||
gQueue = clCreateCommandQueueWithProperties(gContext, device, 0, &error);
|
||||
gQueue = clCreateCommandQueue(gContext, device, 0, &error);
|
||||
if( NULL == gQueue )
|
||||
{
|
||||
vlog_error( "clCreateContext failed. (%d)\n", error );
|
||||
vlog_error( "clCreateCommandQueue failed. (%d)\n", error );
|
||||
return TEST_FAIL;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user