Skip to content

Commit cfc03f8

Browse files
authored
Merge pull request swiftlang#23955 from gottesmm/pr-098e8d08913c6672dcb8933d89afcd7c9f900dbd
2 parents f8252b7 + 4a6154b commit cfc03f8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

utils/build-script

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -895,7 +895,7 @@ class BuildScriptInvocation(object):
895895
if self.args.build_sourcekitlsp:
896896
product_classes.append(products.SourceKitLSP)
897897
if self.args.build_toolchainbenchmarks:
898-
product_classes.append(products.ToolchainBenchmarks)
898+
product_classes.append(products.Benchmarks)
899899
return product_classes
900900

901901
def execute(self):

utils/swift_build_support/swift_build_support/products/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#
1111
# ----------------------------------------------------------------------------
1212

13-
from .benchmarks import ToolchainBenchmarks
13+
from .benchmarks import Benchmarks
1414
from .cmark import CMark
1515
from .foundation import Foundation
1616
from .indexstoredb import IndexStoreDB
@@ -48,5 +48,5 @@
4848
'SwiftEvolve',
4949
'IndexStoreDB',
5050
'SourceKitLSP',
51-
'ToolchainBenchmarks',
51+
'Benchmarks',
5252
]

utils/swift_build_support/swift_build_support/products/benchmarks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020

2121
# Build against the current installed toolchain.
22-
class ToolchainBenchmarks(product.Product):
22+
class Benchmarks(product.Product):
2323
@classmethod
2424
def product_source_name(cls):
2525
return "benchmarks"

0 commit comments

Comments
 (0)