Skip to content

Commit 2f31479

Browse files
authored
Merge pull request swiftlang#9041 from rudkx/disable-slow-test
Disable an "expression too complex" test for now.
2 parents 55f5afd + 21fd184 commit 2f31479

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/Sema/complex_expressions.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
// SR-139:
44
// Infinite recursion parsing bitwise operators
5-
let x = UInt32(0x1FF)&0xFF << 24 | UInt32(0x1FF)&0xFF << 16 | UInt32(0x1FF)&0xFF << 8 | (UInt32(0x1FF)&0xFF);
5+
// FIXME: SR-4714 tracks re-enabling this
6+
// let x = UInt32(0x1FF)&0xFF << 24 | UInt32(0x1FF)&0xFF << 16 | UInt32(0x1FF)&0xFF << 8 | (UInt32(0x1FF)&0xFF);
67

78
// SR-838:
89
// expression test_seconds() was too complex to be solved in reasonable time

0 commit comments

Comments
 (0)