Skip to content

Commit

Permalink
[benchmark] Disable tests with overlong runtime
Browse files Browse the repository at this point in the history
Temporarily disable benchmarks that run for too long without optimizations pending in set-on-fire branch.
  • Loading branch information
palimondo authored May 12, 2019
1 parent 87e1efd commit 81db10c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions benchmark/single-source/SetTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -212,13 +212,13 @@ public let SetTests = [
BenchmarkInfo(
name: "Set.isStrictSubset.Int100",
runFunction: { n in run_SetIsStrictSubsetInt(setP, setQ, false, 5000 * n) },
tags: [.validation, .api, .Set],
tags: [.validation, .api, .Set, .skip],
setUpFunction: { blackHole([setP, setQ]) }),

BenchmarkInfo(
name: "Set.isStrictSubset.Seq.Empty.Int",
runFunction: { n in run_SetIsStrictSubsetSeqInt(setE, arrayAB, true, 5000 * n) },
tags: [.validation, .api, .Set],
tags: [.validation, .api, .Set, .skip],
setUpFunction: { blackHole([setE, arrayAB]) }),
BenchmarkInfo(
name: "Set.isStrictSubset.Seq.Int.Empty",
Expand Down Expand Up @@ -305,7 +305,7 @@ public let SetTests = [
BenchmarkInfo(
name: "Set.isStrictSuperset.Seq.Int.Empty",
runFunction: { n in run_SetIsStrictSupersetSeqInt(setE, arrayAB, false, 5000 * n) },
tags: [.validation, .api, .Set],
tags: [.validation, .api, .Set, .skip],
setUpFunction: { blackHole([setE, arrayAB]) }),
BenchmarkInfo(
name: "Set.isStrictSuperset.Seq.Int0",
Expand Down

0 comments on commit 81db10c

Please sign in to comment.