Skip to content

Commit bee63a3

Browse files
authored
Merge pull request #71835 from apple/lldb/type-completion-rework/swift-build-script/fix-to-20230725
[build-script] Fix the LLDB redecl completion filter that we pass to llvm-lit In the presence of multiple --filter options, llvm-lit will only pick the last one. Which means we only ever ran the tests under commands/. This patch turns the multiple filters into a regex.
2 parents b4a5ad2 + dd42476 commit bee63a3

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

utils/build-script-impl

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2764,10 +2764,7 @@ for host in "${ALL_HOSTS[@]}"; do
27642764
"${lldb_build_dir}/test/API" \
27652765
${LLVM_LIT_ARGS} \
27662766
--param dotest-args="--setting plugin.typesystem.clang.experimental-redecl-completion=true" \
2767-
--filter="lang" \
2768-
--filter="functionalities" \
2769-
--filter="types" \
2770-
--filter="commands"
2767+
--filter="lang|functionalities|types|commands"
27712768

27722769
# FIXME: run shell-tests with new setting. LLDB doesn't support that yet.
27732770
fi

0 commit comments

Comments
 (0)