Skip to content

Commit 6126bc0

Browse files
committed
[TypeChecker] NFC: Complicate perf test-case expression by adding more operators
This test has become flaky in different configurations due to a varying number of available operator overloads, let's use more operators to make sure that it's "too complex" regardless of configuration. Resolves: rdar://77656775
1 parent 6f44ba4 commit 6126bc0

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed
Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
// RUN: %target-typecheck-verify-swift -solver-expression-time-threshold=1
22
// REQUIRES: tools-release,no_asan
33

4-
// rdar://77656775
5-
// UNSUPPORTED: CPU=arm64 && OS=macosx
6-
74
let a = "a"
85
let b = "b"
96
let c = 42
10-
_ = "a=" + a + ";b=" + b + ";c=" + c
7+
let d = 0.0
8+
9+
_ = "a=" + a + ";b=" + b + ";c=" + c + ";d=" + d
1110
// expected-error@-1 {{reasonable time}}

0 commit comments

Comments
 (0)