Skip to content

Commit 5c44da5

Browse files
committed
[incrParse] Rename swift-swiftsyntax-test to swiftsyntax-lit-test-helper
1 parent 3801bb0 commit 5c44da5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

utils/incrparse/incr_transfer_round_trip.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ def main():
4646
'--swift-syntax-test', required=True,
4747
help='The path to swift-syntax-test')
4848
parser.add_argument(
49-
'--swift-swiftsyntax-test', required=True,
50-
help='The path to swift-swiftsyntax-test')
49+
'--swiftsyntax-lit-test-helper', required=True,
50+
help='The path to the lit-test-helper binary of SwiftSyntax')
5151
parser.add_argument(
5252
'--serialization-format', choices=['json', 'byteTree'],
5353
default='json', help='''
@@ -61,7 +61,7 @@ def main():
6161
test_case = args.test_case
6262
temp_dir = args.temp_dir
6363
swift_syntax_test = args.swift_syntax_test
64-
swift_swiftsyntax_test = args.swift_swiftsyntax_test
64+
swiftsyntax_lit_test_helper = args.swiftsyntax_lit_test_helper
6565
serialization_format = args.serialization_format
6666

6767
if not os.path.exists(temp_dir):
@@ -108,7 +108,7 @@ def main():
108108
sys.exit(1)
109109

110110
try:
111-
run_command([swift_swiftsyntax_test, '-deserialize-incremental'] +
111+
run_command([swiftsyntax_lit_test_helper, '-deserialize-incremental'] +
112112
['-serialization-format', serialization_format] +
113113
['-pre-edit-tree', pre_edit_tree_file] +
114114
['-incr-tree', incremental_tree_file] +

0 commit comments

Comments
 (0)