Skip to content

Commit 2d1ac7b

Browse files
authored
[SYCL][unit] Disable MultipleDeviceCacheTest.ProgramRetain on Windows (#22941)
Sporadically fails on Windows, see #21553 Signed-off-by: Nick Sarnie <nick.sarnie@intel.com>
1 parent 98748c4 commit 2d1ac7b

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

sycl/unittests/kernel-and-program/MultipleDevsCache.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,12 @@ class MultipleDeviceCacheTest
107107

108108
// Test that program is retained for each subset of the list of devices and that
109109
// number of urKernelRelease calls is correct.
110+
#ifdef _WIN32
111+
// https://github.com/intel/llvm/issues/21553
112+
TEST_P(MultipleDeviceCacheTest, DISABLED_ProgramRetain) {
113+
#else
110114
TEST_P(MultipleDeviceCacheTest, ProgramRetain) {
115+
#endif
111116
{
112117
// Reset counters
113118
RetainCounter = 0;

0 commit comments

Comments
 (0)