1
- # swift_build_support/products/swiftdt .py --- --------------------*- python -*-
1
+ # swift_build_support/products/swiftinspect .py --------------------*- python -*-
2
2
#
3
3
# This source file is part of the Swift.org open source project
4
4
#
19
19
20
20
21
21
# Build against the current installed toolchain.
22
- class SwiftDT (product .Product ):
22
+ class SwiftInspect (product .Product ):
23
23
@classmethod
24
24
def product_source_name (cls ):
25
25
return "swift-dt"
@@ -35,7 +35,7 @@ def build(self, host_target):
35
35
run_build_script_helper (host_target , self , self .args )
36
36
37
37
def should_test (self , host_target ):
38
- return self .args .test_swiftdt
38
+ return self .args .test_swift_inspect
39
39
40
40
def test (self , host_target ):
41
41
"""Just run a single instance of the command for both .debug and
@@ -61,7 +61,7 @@ def run_build_script_helper(host_target, product, args):
61
61
# the assumption that each product is in its own build directory. This
62
62
# product is not like that and has its package/tools instead in
63
63
# ./$SOURCE_ROOT/swift/benchmark.
64
- package_path = os .path .join (product .source_dir , '..' , 'swift' , 'tools' , 'swiftdt ' )
64
+ package_path = os .path .join (product .source_dir , '..' , 'swift' , 'tools' , 'swift-inspect ' )
65
65
package_path = os .path .abspath (package_path )
66
66
67
67
# We use a separate python helper to enable quicker iteration when working
0 commit comments