Skip to content

Commit 21fd184

Browse files
committed
Disable an "expression too complex" test for now.
I've opened https://bugs.swift.org/browse/SR-4714 to track fixing the slowness here and/or moving the test into the validation suite. We're currently not "too complex" here given the current metric, but we are still extremely slow, adding several minutes to test runs.
1 parent 890dbf1 commit 21fd184

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)