Skip to content

Commit 10151b1

Browse files
authored
[SYCL] Disable SchedulerTest/ShortcutFunctionWithWaitList on Windows (#15060)
This one is failing too. Also tracked in #15049 Signed-off-by: Sarnie, Nick <[email protected]>
1 parent 1519089 commit 10151b1

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

sycl/unittests/scheduler/EnqueueWithDependsOnDeps.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,12 @@ ur_result_t redefinedEnqueueEventsWaitWithBarrier(void *pParams) {
313313
return UR_RESULT_SUCCESS;
314314
}
315315

316+
// https://github.com/intel/llvm/issues/15049
317+
#ifdef _WIN32
318+
TEST_F(DependsOnTests, DISABLED_ShortcutFunctionWithWaitList) {
319+
#else
316320
TEST_F(DependsOnTests, ShortcutFunctionWithWaitList) {
321+
#endif
317322
mock::getCallbacks().set_before_callback("urEnqueueUSMMemcpy",
318323
&redefinedextUSMEnqueueMemcpy);
319324
sycl::queue Queue = detail::createSyclObjFromImpl<queue>(QueueDevImpl);

0 commit comments

Comments
 (0)