File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
swift_build_support/swift_build_support/products Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -895,7 +895,7 @@ class BuildScriptInvocation(object):
895
895
if self .args .build_sourcekitlsp :
896
896
product_classes .append (products .SourceKitLSP )
897
897
if self .args .build_toolchainbenchmarks :
898
- product_classes .append (products .ToolchainBenchmarks )
898
+ product_classes .append (products .Benchmarks )
899
899
return product_classes
900
900
901
901
def execute (self ):
Original file line number Diff line number Diff line change 10
10
#
11
11
# ----------------------------------------------------------------------------
12
12
13
- from .benchmarks import ToolchainBenchmarks
13
+ from .benchmarks import Benchmarks
14
14
from .cmark import CMark
15
15
from .foundation import Foundation
16
16
from .indexstoredb import IndexStoreDB
48
48
'SwiftEvolve' ,
49
49
'IndexStoreDB' ,
50
50
'SourceKitLSP' ,
51
- 'ToolchainBenchmarks ' ,
51
+ 'Benchmarks ' ,
52
52
]
Original file line number Diff line number Diff line change 19
19
20
20
21
21
# Build against the current installed toolchain.
22
- class ToolchainBenchmarks (product .Product ):
22
+ class Benchmarks (product .Product ):
23
23
@classmethod
24
24
def product_source_name (cls ):
25
25
return "benchmarks"
You can’t perform that action at this time.
0 commit comments