Skip to content

Commit c31df3a

Browse files
cachemeifyoucankcloudy0717
authored andcommitted
[CAS] Disable CASTests on Windows versions before windows 11 (llvm#170420)
Disable test due to CASTests failing nondeterministically on some windows CI.
1 parent 5037828 commit c31df3a

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)