Skip to content

Commit 03194eb

Browse files
authored
Merge pull request #71724 from Michael137/lldb/type-completion-rework/swift-build-script/to-20230725
[build-script] Run LLDB tests with new redecl-completion setting
2 parents 6831c24 + 8858585 commit 03194eb

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

utils/build-script-impl

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2754,6 +2754,21 @@ for host in "${ALL_HOSTS[@]}"; do
27542754
--param dotest-args="${DOTEST_ARGS}" \
27552755
--filter=compat
27562756
fi
2757+
2758+
if [[ "$(true_false ${LLDB_TEST_SWIFT_ONLY})" == "FALSE" ]]; then
2759+
echo "--- Rerun LLDB API tests (Config: Redecl completion) ---"
2760+
with_pushd ${results_dir} \
2761+
call "${llvm_build_dir}/bin/llvm-lit" \
2762+
"${lldb_build_dir}/test/API" \
2763+
${LLVM_LIT_ARGS} \
2764+
--param dotest-args="--setting plugin.typesystem.clang.experimental-redecl-completion=true" \
2765+
--filter="lang" \
2766+
--filter="functionalities" \
2767+
--filter="types" \
2768+
--filter="commands"
2769+
2770+
# FIXME: run shell-tests with new setting. LLDB doesn't support that yet.
2771+
fi
27572772
continue
27582773
;;
27592774
llbuild)

0 commit comments

Comments
 (0)