Skip to content

Commit b4654bf

Browse files
[benchmark] Use dot in integer parsing benchmark names
1 parent 150bcb0 commit b4654bf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

benchmark/single-source/IntegerParsing.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@
1313
import TestsUtils
1414

1515
public let IntegerParsing = [
16-
BenchmarkInfo(name: "ParseIntFromDecimal",
16+
BenchmarkInfo(name: "ParseInt.Decimal",
1717
runFunction: run_ParseIntFromDecimal,
1818
tags: [.validation, .api],
1919
setUpFunction: { blackHole(decimalStrings) }),
20-
BenchmarkInfo(name: "ParseIntFromBinary",
20+
BenchmarkInfo(name: "ParseInt.Binary",
2121
runFunction: run_ParseIntFromBinary,
2222
tags: [.validation, .api],
2323
setUpFunction: { blackHole(binaryStrings) }),
24-
BenchmarkInfo(name: "ParseIntFromHex",
24+
BenchmarkInfo(name: "ParseInt.Hex",
2525
runFunction: run_ParseIntFromHex,
2626
tags: [.validation, .api],
2727
setUpFunction: { blackHole(hexStrings) }),
28-
BenchmarkInfo(name: "ParseIntFromUncommonRadix",
28+
BenchmarkInfo(name: "ParseInt.UncommonRadix",
2929
runFunction: run_ParseIntFromUncommonRadix,
3030
tags: [.validation, .api],
3131
setUpFunction: { blackHole(uncommonRadixStrings) }),

0 commit comments

Comments
 (0)