From a6a1f55767ed7926a06b1e3b08991a3d4321a8de Mon Sep 17 00:00:00 2001 From: Nick Sarnie Date: Tue, 13 Aug 2024 15:12:45 +0000 Subject: [PATCH] [SYCL] Disable SchedulerTest/StreamBufferDeallocation on Windows (#15050) Failing on Windows https://github.com/intel/llvm/issues/15049 Signed-off-by: Sarnie, Nick --- sycl/unittests/scheduler/GraphCleanup.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sycl/unittests/scheduler/GraphCleanup.cpp b/sycl/unittests/scheduler/GraphCleanup.cpp index 1650b720e964c..d0ab78a2b54d6 100644 --- a/sycl/unittests/scheduler/GraphCleanup.cpp +++ b/sycl/unittests/scheduler/GraphCleanup.cpp @@ -307,7 +307,12 @@ struct AttachSchedulerWrapper { }; // Check that stream buffers are released alongside graph cleanup. +// https://github.com/intel/llvm/issues/15049 +#ifdef _WIN32 +TEST_F(SchedulerTest, DISABLED_StreamBufferDeallocation) { +#else TEST_F(SchedulerTest, StreamBufferDeallocation) { +#endif unittest::UrMock<> Mock; platform Plt = sycl::platform(); context Ctx{Plt};