File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,8 @@ function(get_test_dependencies SDK result_var_name)
47
47
if (NOT SWIFT_BUILT_STANDALONE )
48
48
list (APPEND deps_binaries FileCheck arcmt-test c-arcmt-test c-index-test
49
49
clang llc llvm-cov llvm-dwarfdump llvm-link llvm-as llvm-dis
50
- llvm-bcanalyzer llvm-nm llvm-readobj llvm-profdata count not )
50
+ llvm-bcanalyzer llvm-nm llvm-readobj llvm-profdata count not
51
+ llvm-strings )
51
52
endif ()
52
53
if (SWIFT_BUILD_SOURCEKIT )
53
54
list (APPEND deps_binaries sourcekitd-test complete-test )
Original file line number Diff line number Diff line change 3
3
4
4
// RUN: %empty-directory(%t)
5
5
// RUN: %target-swift-frontend -module-name comments -emit-module -emit-module-path %t/comments.swiftmodule -emit-module-doc -emit-module-doc-path %t/comments.swiftdoc -group-info-path %S/Inputs/comments-params.json %s
6
- // RUN: strings %t/comments.swiftdoc > %t.txt
6
+ // RUN: %llvm- strings %t/comments.swiftdoc > %t.txt
7
7
// RUN: %FileCheck %s < %t.txt
8
8
// RUN: %FileCheck -check-prefix NEGATIVE %s < %t.txt
9
9
Original file line number Diff line number Diff line change @@ -267,6 +267,7 @@ config.llvm_link = inferSwiftBinary('llvm-link')
267
267
config .swift_llvm_opt = inferSwiftBinary ('swift-llvm-opt' )
268
268
config .llvm_profdata = inferSwiftBinary ('llvm-profdata' )
269
269
config .llvm_cov = inferSwiftBinary ('llvm-cov' )
270
+ config .llvm_strings = inferSwiftBinary ('llvm-strings' )
270
271
config .filecheck = inferSwiftBinary ('FileCheck' )
271
272
config .llvm_dwarfdump = inferSwiftBinary ('llvm-dwarfdump' )
272
273
config .llvm_dis = inferSwiftBinary ('llvm-dis' )
@@ -374,6 +375,7 @@ config.substitutions.append( ('%llvm-dis', config.llvm_dis) )
374
375
config .substitutions .append ( ('%swift-demangle-yamldump' , config .swift_demangle_yamldump ) )
375
376
config .substitutions .append ( ('%Benchmark_O' , config .benchmark_o ) )
376
377
config .substitutions .append ( ('%Benchmark_Driver' , config .benchmark_driver ) )
378
+ config .substitutions .append ( ('%llvm-strings' , config .llvm_strings ) )
377
379
378
380
# This must come after all substitutions containing "%swift".
379
381
config .substitutions .append (
You can’t perform that action at this time.
0 commit comments