From 81db10cdc9cf279639f46125a225095fb32996ab Mon Sep 17 00:00:00 2001 From: Pavol Vaskovic Date: Sun, 12 May 2019 12:58:02 +0200 Subject: [PATCH] [benchmark] Disable tests with overlong runtime Temporarily disable benchmarks that run for too long without optimizations pending in set-on-fire branch. --- benchmark/single-source/SetTests.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/benchmark/single-source/SetTests.swift b/benchmark/single-source/SetTests.swift index 5d644aa392994..e3aff23ac9cd4 100644 --- a/benchmark/single-source/SetTests.swift +++ b/benchmark/single-source/SetTests.swift @@ -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", @@ -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",