Skip to content

Commit 8997c70

Browse files
authored
Merge pull request #23017 from lorentey/disable-long-running-tests-5.1
[5.1] Disable long-running collection tests when stdlib is unoptimized
2 parents 9908734 + 25b7195 commit 8997c70

25 files changed

+100
-0
lines changed

validation-test/stdlib/Collection/DefaultedBidirectionalCollectionOfRef.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
// RUN: %target-run-simple-swift
99
// REQUIRES: executable_test
1010

11+
// FIXME: the test is too slow when the standard library is not optimized.
12+
// rdar://problem/46878013
13+
// REQUIRES: optimized_stdlib
14+
1115
import StdlibUnittest
1216
import StdlibCollectionUnittest
1317

validation-test/stdlib/Collection/DefaultedCollectionOfRef.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
// RUN: %target-run-simple-swift
99
// REQUIRES: executable_test
1010

11+
// FIXME: the test is too slow when the standard library is not optimized.
12+
// rdar://problem/46878013
13+
// REQUIRES: optimized_stdlib
14+
1115
import StdlibUnittest
1216
import StdlibCollectionUnittest
1317

validation-test/stdlib/Collection/DefaultedMutableBidirectionalCollectionOfRef.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
// RUN: %target-run-simple-swift
99
// REQUIRES: executable_test
1010

11+
// FIXME: the test is too slow when the standard library is not optimized.
12+
// rdar://problem/46878013
13+
// REQUIRES: optimized_stdlib
14+
1115
import StdlibUnittest
1216
import StdlibCollectionUnittest
1317

validation-test/stdlib/Collection/DefaultedMutableCollectionOfRef.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
// RUN: %target-run-simple-swift
99
// REQUIRES: executable_test
1010

11+
// FIXME: the test is too slow when the standard library is not optimized.
12+
// rdar://problem/46878013
13+
// REQUIRES: optimized_stdlib
14+
1115
import StdlibUnittest
1216
import StdlibCollectionUnittest
1317

validation-test/stdlib/Collection/DefaultedMutableRandomAccessCollectionOfRef.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
// RUN: %target-run-simple-swift
99
// REQUIRES: executable_test
1010

11+
// FIXME: the test is too slow when the standard library is not optimized.
12+
// rdar://problem/46878013
13+
// REQUIRES: optimized_stdlib
14+
1115
import StdlibUnittest
1216
import StdlibCollectionUnittest
1317

validation-test/stdlib/Collection/DefaultedMutableRangeReplaceableBidirectionalCollectionOfRef.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
// RUN: %target-run-simple-swift
99
// REQUIRES: executable_test
1010

11+
// FIXME: the test is too slow when the standard library is not optimized.
12+
// rdar://problem/46878013
13+
// REQUIRES: optimized_stdlib
14+
1115
import StdlibUnittest
1216
import StdlibCollectionUnittest
1317

validation-test/stdlib/Collection/DefaultedMutableRangeReplaceableCollectionOfRef.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
// RUN: %target-run-simple-swift
99
// REQUIRES: executable_test
1010

11+
// FIXME: the test is too slow when the standard library is not optimized.
12+
// rdar://problem/46878013
13+
// REQUIRES: optimized_stdlib
14+
1115
import StdlibUnittest
1216
import StdlibCollectionUnittest
1317

validation-test/stdlib/Collection/DefaultedMutableRangeReplaceableRandomAccessCollectionOfRef.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
// RUN: %target-run-simple-swift
99
// REQUIRES: executable_test
1010

11+
// FIXME: the test is too slow when the standard library is not optimized.
12+
// rdar://problem/46878013
13+
// REQUIRES: optimized_stdlib
14+
1115
import StdlibUnittest
1216
import StdlibCollectionUnittest
1317

validation-test/stdlib/Collection/DefaultedRandomAccessCollectionOfRef.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
// RUN: %target-run-simple-swift
99
// REQUIRES: executable_test
1010

11+
// FIXME: the test is too slow when the standard library is not optimized.
12+
// rdar://problem/46878013
13+
// REQUIRES: optimized_stdlib
14+
1115
import StdlibUnittest
1216
import StdlibCollectionUnittest
1317

validation-test/stdlib/Collection/DefaultedRangeReplaceableBidirectionalCollectionOfRef.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
// RUN: %target-run-simple-swift
99
// REQUIRES: executable_test
1010

11+
// FIXME: the test is too slow when the standard library is not optimized.
12+
// rdar://problem/46878013
13+
// REQUIRES: optimized_stdlib
14+
1115
import StdlibUnittest
1216
import StdlibCollectionUnittest
1317

validation-test/stdlib/Collection/DefaultedRangeReplaceableCollectionOfRef.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
// RUN: %target-run-simple-swift
99
// REQUIRES: executable_test
1010

11+
// FIXME: the test is too slow when the standard library is not optimized.
12+
// rdar://problem/46878013
13+
// REQUIRES: optimized_stdlib
14+
1115
import StdlibUnittest
1216
import StdlibCollectionUnittest
1317

validation-test/stdlib/Collection/DefaultedRangeReplaceableRandomAccessCollectionOfRef.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
// RUN: %target-run-simple-swift
99
// REQUIRES: executable_test
1010

11+
// FIXME: the test is too slow when the standard library is not optimized.
12+
// rdar://problem/46878013
13+
// REQUIRES: optimized_stdlib
14+
1115
import StdlibUnittest
1216
import StdlibCollectionUnittest
1317

validation-test/stdlib/Collection/Inputs/Template.swift.gyb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,10 @@ runAllTests()
127127
// RUN: %target-run-simple-swift
128128
// REQUIRES: executable_test
129129

130+
// FIXME: the test is too slow when the standard library is not optimized.
131+
// rdar://problem/46878013
132+
// REQUIRES: optimized_stdlib
133+
130134
import StdlibUnittest
131135
import StdlibCollectionUnittest
132136

validation-test/stdlib/Collection/MinimalBidirectionalCollectionOfRef.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
// RUN: %target-run-simple-swift
99
// REQUIRES: executable_test
1010

11+
// FIXME: the test is too slow when the standard library is not optimized.
12+
// rdar://problem/46878013
13+
// REQUIRES: optimized_stdlib
14+
1115
import StdlibUnittest
1216
import StdlibCollectionUnittest
1317

validation-test/stdlib/Collection/MinimalCollectionOfRef.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
// RUN: %target-run-simple-swift
99
// REQUIRES: executable_test
1010

11+
// FIXME: the test is too slow when the standard library is not optimized.
12+
// rdar://problem/46878013
13+
// REQUIRES: optimized_stdlib
14+
1115
import StdlibUnittest
1216
import StdlibCollectionUnittest
1317

validation-test/stdlib/Collection/MinimalMutableBidirectionalCollectionOfRef.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
// RUN: %target-run-simple-swift
99
// REQUIRES: executable_test
1010

11+
// FIXME: the test is too slow when the standard library is not optimized.
12+
// rdar://problem/46878013
13+
// REQUIRES: optimized_stdlib
14+
1115
import StdlibUnittest
1216
import StdlibCollectionUnittest
1317

validation-test/stdlib/Collection/MinimalMutableCollectionOfRef.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
// RUN: %target-run-simple-swift
99
// REQUIRES: executable_test
1010

11+
// FIXME: the test is too slow when the standard library is not optimized.
12+
// rdar://problem/46878013
13+
// REQUIRES: optimized_stdlib
14+
1115
import StdlibUnittest
1216
import StdlibCollectionUnittest
1317

validation-test/stdlib/Collection/MinimalMutableRandomAccessCollectionOfRef.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
// RUN: %target-run-simple-swift
99
// REQUIRES: executable_test
1010

11+
// FIXME: the test is too slow when the standard library is not optimized.
12+
// rdar://problem/46878013
13+
// REQUIRES: optimized_stdlib
14+
1115
import StdlibUnittest
1216
import StdlibCollectionUnittest
1317

validation-test/stdlib/Collection/MinimalMutableRangeReplaceableBidirectionalCollectionOfRef.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
// RUN: %target-run-simple-swift
99
// REQUIRES: executable_test
1010

11+
// FIXME: the test is too slow when the standard library is not optimized.
12+
// rdar://problem/46878013
13+
// REQUIRES: optimized_stdlib
14+
1115
import StdlibUnittest
1216
import StdlibCollectionUnittest
1317

validation-test/stdlib/Collection/MinimalMutableRangeReplaceableCollectionOfRef.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
// RUN: %target-run-simple-swift
99
// REQUIRES: executable_test
1010

11+
// FIXME: the test is too slow when the standard library is not optimized.
12+
// rdar://problem/46878013
13+
// REQUIRES: optimized_stdlib
14+
1115
import StdlibUnittest
1216
import StdlibCollectionUnittest
1317

validation-test/stdlib/Collection/MinimalMutableRangeReplaceableRandomAccessCollectionOfRef.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
// RUN: %target-run-simple-swift
99
// REQUIRES: executable_test
1010

11+
// FIXME: the test is too slow when the standard library is not optimized.
12+
// rdar://problem/46878013
13+
// REQUIRES: optimized_stdlib
14+
1115
import StdlibUnittest
1216
import StdlibCollectionUnittest
1317

validation-test/stdlib/Collection/MinimalRandomAccessCollectionOfRef.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
// RUN: %target-run-simple-swift
99
// REQUIRES: executable_test
1010

11+
// FIXME: the test is too slow when the standard library is not optimized.
12+
// rdar://problem/46878013
13+
// REQUIRES: optimized_stdlib
14+
1115
import StdlibUnittest
1216
import StdlibCollectionUnittest
1317

validation-test/stdlib/Collection/MinimalRangeReplaceableBidirectionalCollectionOfRef.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
// RUN: %target-run-simple-swift
99
// REQUIRES: executable_test
1010

11+
// FIXME: the test is too slow when the standard library is not optimized.
12+
// rdar://problem/46878013
13+
// REQUIRES: optimized_stdlib
14+
1115
import StdlibUnittest
1216
import StdlibCollectionUnittest
1317

validation-test/stdlib/Collection/MinimalRangeReplaceableCollectionOfRef.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
// RUN: %target-run-simple-swift
99
// REQUIRES: executable_test
1010

11+
// FIXME: the test is too slow when the standard library is not optimized.
12+
// rdar://problem/46878013
13+
// REQUIRES: optimized_stdlib
14+
1115
import StdlibUnittest
1216
import StdlibCollectionUnittest
1317

validation-test/stdlib/Collection/MinimalRangeReplaceableRandomAccessCollectionOfRef.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
// RUN: %target-run-simple-swift
99
// REQUIRES: executable_test
1010

11+
// FIXME: the test is too slow when the standard library is not optimized.
12+
// rdar://problem/46878013
13+
// REQUIRES: optimized_stdlib
14+
1115
import StdlibUnittest
1216
import StdlibCollectionUnittest
1317

0 commit comments

Comments
 (0)