Skip to content

Commit 81db10c

Browse files
authored
[benchmark] Disable tests with overlong runtime
Temporarily disable benchmarks that run for too long without optimizations pending in set-on-fire branch.
1 parent 87e1efd commit 81db10c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

benchmark/single-source/SetTests.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -212,13 +212,13 @@ public let SetTests = [
212212
BenchmarkInfo(
213213
name: "Set.isStrictSubset.Int100",
214214
runFunction: { n in run_SetIsStrictSubsetInt(setP, setQ, false, 5000 * n) },
215-
tags: [.validation, .api, .Set],
215+
tags: [.validation, .api, .Set, .skip],
216216
setUpFunction: { blackHole([setP, setQ]) }),
217217

218218
BenchmarkInfo(
219219
name: "Set.isStrictSubset.Seq.Empty.Int",
220220
runFunction: { n in run_SetIsStrictSubsetSeqInt(setE, arrayAB, true, 5000 * n) },
221-
tags: [.validation, .api, .Set],
221+
tags: [.validation, .api, .Set, .skip],
222222
setUpFunction: { blackHole([setE, arrayAB]) }),
223223
BenchmarkInfo(
224224
name: "Set.isStrictSubset.Seq.Int.Empty",
@@ -305,7 +305,7 @@ public let SetTests = [
305305
BenchmarkInfo(
306306
name: "Set.isStrictSuperset.Seq.Int.Empty",
307307
runFunction: { n in run_SetIsStrictSupersetSeqInt(setE, arrayAB, false, 5000 * n) },
308-
tags: [.validation, .api, .Set],
308+
tags: [.validation, .api, .Set, .skip],
309309
setUpFunction: { blackHole([setE, arrayAB]) }),
310310
BenchmarkInfo(
311311
name: "Set.isStrictSuperset.Seq.Int0",

0 commit comments

Comments
 (0)