Skip to content

[SYCL][Compat] Fix launch_policy_neg test on Windows #18643

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 26, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions sycl/test/syclcompat/launch/launch_policy_neg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@
* Description:
* Negative tests for new launch_policy.
**************************************************************************/
// UNSUPPORTED: windows
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/17116

// RUN: not %clangxx -fsycl -fsyntax-only %s -DCHECK1 2>&1 | FileCheck -vv %s --check-prefixes=CHECK1
// RUN: not %clangxx -fsycl -fsyntax-only %s -DCHECK2 2>&1 | FileCheck -vv %s --check-prefixes=CHECK2
// RUN: not %clangxx -fsycl -fsyntax-only %s -DCHECK3 2>&1 | FileCheck -vv %s --check-prefixes=CHECK3
Expand Down Expand Up @@ -148,7 +147,7 @@ void test_variadic_config_ctor() {
sycl::nd_range<3> launch_range{{1, 1, 32}, {1, 1, 32}};
compat_exp::local_mem_size lmem_size(0);
compat_exp::launch_policy duplicate_local_mem_config(launch_range, lmem_size, lmem_size);
//CHECK8: error: static assertion failed due to requirement{{.*(exactly once|duplicate type)}}
//CHECK8: error: static assertion failed{{.*(exactly once|duplicate type)}}
}
#endif
#ifdef CHECK9
Expand Down