Skip to content

Commit 1f6d0d8

Browse files
[CAS] Disable CASTests on Windows versions before windows 11 (#170420)
Disable test due to CASTests failing nondeterministically on some windows CI.
1 parent 90606ae commit 1f6d0d8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/unittests/CAS/CASTestConfig.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ class CASTest
7474

7575
void SetUp() override {
7676
#ifdef _WIN32
77-
if (llvm::GetWindowsOSVersion() < llvm::VersionTuple(10, 0, 0, 17763))
77+
// Temporarily disable CAS tests on pre windows 11 OS.
78+
if (llvm::GetWindowsOSVersion() < llvm::VersionTuple(10, 0, 0, 22000))
7879
GTEST_SKIP() << "CAS tests skipped on older windows version";
7980
#endif
8081
NextCASIndex = 0;

0 commit comments

Comments
 (0)