Add .cpubench tag to ProtocolDispatch2

This commit is contained in:
Andrew Trick
2020-05-07 15:01:04 -07:00
parent 53055fa73c
commit eb1ac0bfd9

View File

@@ -19,7 +19,7 @@ import TestsUtils
public let ProtocolDispatch2 = BenchmarkInfo(
name: "ProtocolDispatch2",
runFunction: run_ProtocolDispatch2,
tags: [.validation, .abstraction])
tags: [.validation, .abstraction, .cpubench])
protocol Pingable { func ping() -> Int; func pong() -> Int}