From 172322e1558f3fb6a723ffa2953fc1696cfb4808 Mon Sep 17 00:00:00 2001 From: Einar Hov Date: Thu, 10 Sep 2020 16:58:29 +0100 Subject: [PATCH] Add async_build test to list of tests to skip during offline compilation mode (#950) The test attempts to build a program from source containing invalid code, to provoke a build failure. In offline compilation mode, this causes the offline compiler to give an error, failing the test. Signed-off-by: Einar Hov --- 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 e17888b7..b2586f90 100644 --- a/test_common/harness/errorHelpers.cpp +++ b/test_common/harness/errorHelpers.cpp @@ -744,6 +744,7 @@ const char *subtests_to_skip_with_offline_compiler[] = { "simple_link_with_callback", "simple_static_compile_only", "two_file_link", + "async_build", }; int check_functions_for_offline_compiler(const char *subtestname, cl_device_id device)