Skip to content

Commit 776ace0

Browse files
committed
[benchmark] Disable ExistentialPerformance
Don’t run the ExistentialPerformance benchmarks as part of the pre-commit suite.
1 parent b61a63d commit 776ace0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

benchmark/single-source/ExistentialPerformance.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ import TestsUtils
2727
// copy-on-write buffer (outline case) that holds the struct vs copying the
2828
// individual fields of the struct in the inline case of `Ref3`.
2929

30-
let t: [BenchmarkCategory] = [.existential]
31-
let ta: [BenchmarkCategory] = [.api, .Array, .existential]
30+
let t: [BenchmarkCategory] = [.skip]
31+
let ta: [BenchmarkCategory] = [.api, .Array, .skip]
3232

3333
public let ExistentialPerformance: [BenchmarkInfo] = [
3434
BenchmarkInfo(name: "Existential.method.1x.Ref1",

benchmark/single-source/ExistentialPerformance.swift.gyb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ import TestsUtils
2828
// copy-on-write buffer (outline case) that holds the struct vs copying the
2929
// individual fields of the struct in the inline case of `Ref3`.
3030

31-
let t: [BenchmarkCategory] = [.existential]
32-
let ta: [BenchmarkCategory] = [.api, .Array, .existential]
31+
let t: [BenchmarkCategory] = [.skip]
32+
let ta: [BenchmarkCategory] = [.api, .Array, .skip]
3333

3434
%{
3535
Setup = """

0 commit comments

Comments
 (0)