Disable {svm_,}atomic_fence tests (#2545)

As agreed in 2025/10/14 teleconference. See #2544.

Signed-off-by: Kevin Petit <kevin.petit@arm.com>
This commit is contained in:
Kévin Petit
2025-10-14 17:58:40 +01:00
committed by GitHub
parent bfa96c77d8
commit 34745bd936

View File

@@ -3961,6 +3961,9 @@ private:
struct TestDefinition _subCase; struct TestDefinition _subCase;
}; };
#if 0
// The tests below are likely incorrect and have been disabled.
// See https://github.com/KhronosGroup/OpenCL-CTS/issues/2544
static int test_atomic_fence_generic(cl_device_id deviceID, cl_context context, static int test_atomic_fence_generic(cl_device_id deviceID, cl_context context,
cl_command_queue queue, int num_elements, cl_command_queue queue, int num_elements,
bool useSVM) bool useSVM)
@@ -4040,3 +4043,4 @@ REGISTER_TEST(svm_atomic_fence)
return test_atomic_fence_generic(device, context, queue, num_elements, return test_atomic_fence_generic(device, context, queue, num_elements,
true); true);
} }
#endif