From e8c55e59bc51ddcf4b9e1ea44400b3109c8767e5 Mon Sep 17 00:00:00 2001 From: Jack Frankland <30410009+FranklandJack@users.noreply.github.com> Date: Fri, 6 Nov 2020 12:32:13 +0100 Subject: [PATCH] Skip `features_macro` Test in Offline Mode (#1034) - [x] Skip the `features_macro` test in offline mode since it makes calls to `create_single_kernel_helper_create_program` and fails when the call doesn't return `CL_SUCCESS` which will happen when the offline compiler fails to compile the kernel which is deliberately supposed to fail compilation in this test. --- test_common/harness/errorHelpers.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/test_common/harness/errorHelpers.cpp b/test_common/harness/errorHelpers.cpp index 03684a15..c1d06028 100644 --- a/test_common/harness/errorHelpers.cpp +++ b/test_common/harness/errorHelpers.cpp @@ -685,6 +685,7 @@ const char *subtests_to_skip_with_offline_compiler[] = { "unload_build_threaded", "unload_build_info", "unload_program_binaries", + "features_macro", }; int check_functions_for_offline_compiler(const char *subtestname,