Skip to content

Commit dd42476

Browse files
committed
[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.
1 parent a9b489c commit dd42476

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)