From bd86e2aa9b13dcdce75a65385d75ac0c25f89d0a Mon Sep 17 00:00:00 2001 From: Ben Ashbaugh Date: Fri, 25 Sep 2020 06:25:49 -0700 Subject: [PATCH] temporarily disable the unload_invalid test case (#978) Different implementations of the OpenCL ICD loader treat a null platform differently, so this case does not reliably return CL_INVALID_PLATFORM. --- test_conformance/compiler/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_conformance/compiler/main.cpp b/test_conformance/compiler/main.cpp index cbf15e5a..89499f46 100644 --- a/test_conformance/compiler/main.cpp +++ b/test_conformance/compiler/main.cpp @@ -91,7 +91,7 @@ test_definition test_list[] = { ADD_TEST_VERSION(features_macro, Version(3, 0)), ADD_TEST(unload_valid), - ADD_TEST(unload_invalid), + // ADD_TEST(unload_invalid), // disabling temporarily, see GitHub #977 ADD_TEST(unload_repeated), ADD_TEST(unload_compile_unload_link), ADD_TEST(unload_build_unload_create_kernel),