Skip to content

Commit 037c67f

Browse files
authored
[SYCL] Disable flaky test EnqueueNoMemObjTwoHostTasks on Windows (#14061)
See #14060 --------- Signed-off-by: Sarnie, Nick <[email protected]>
1 parent c7d627f commit 037c67f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

sycl/unittests/scheduler/EnqueueWithDependsOnDeps.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,13 @@ class DependsOnTests : public ::testing::Test {
165165
};
166166
};
167167

168+
#ifdef _WIN32
169+
// Disabled on Windows due to flaky behavior
170+
// https://github.com/intel/llvm/issues/14060
171+
TEST_F(DependsOnTests, DISABLED_EnqueueNoMemObjTwoHostTasks) {
172+
#else
168173
TEST_F(DependsOnTests, EnqueueNoMemObjTwoHostTasks) {
174+
#endif
169175
// Checks enqueue of two dependent host tasks
170176
detail::QueueImplPtr QueueHostImpl = MS.getDefaultHostQueue();
171177
std::vector<EventImplPtr> Events;

0 commit comments

Comments
 (0)