Skip to content

Commit a6a1f55

Browse files
authored
[SYCL] Disable SchedulerTest/StreamBufferDeallocation on Windows (#15050)
Failing on Windows #15049 Signed-off-by: Sarnie, Nick <[email protected]>
1 parent fe6e307 commit a6a1f55

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

sycl/unittests/scheduler/GraphCleanup.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,12 @@ struct AttachSchedulerWrapper {
307307
};
308308

309309
// Check that stream buffers are released alongside graph cleanup.
310+
// https://github.com/intel/llvm/issues/15049
311+
#ifdef _WIN32
312+
TEST_F(SchedulerTest, DISABLED_StreamBufferDeallocation) {
313+
#else
310314
TEST_F(SchedulerTest, StreamBufferDeallocation) {
315+
#endif
311316
unittest::UrMock<> Mock;
312317
platform Plt = sycl::platform();
313318
context Ctx{Plt};

0 commit comments

Comments
 (0)