Skip to content

Commit 4a2ac1b

Browse files
committed
Rename lldb-test-depends -> lldb-test-deps
This matches the change in upstream LLDB. I've also aligned the invocations to improve the readability and make it clear that they're separate commands executed after each other. (cherry picked from commit 5b1d826)
1 parent 54acc5e commit 4a2ac1b

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

utils/build-script-impl

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3137,13 +3137,15 @@ for host in "${ALL_HOSTS[@]}"; do
31373137
# from this file as possible and just have a single call to lldb-dotest.
31383138
if [[ "$using_xcodebuild" == "FALSE" ]] ; then
31393139
with_pushd ${lldb_build_dir} \
3140-
call ${NINJA_BIN} unittests/LLDBUnitTests
3140+
call ${NINJA_BIN} unittests/LLDBUnitTests
3141+
with_pushd ${lldb_build_dir} \
3142+
call ${NINJA_BIN} lldb-test-deps
31413143
with_pushd ${results_dir} \
3142-
call "${llvm_build_dir}/bin/llvm-lit" \
3143-
"${lldb_build_dir}/lit" \
3144-
${LLVM_LIT_ARGS} \
3145-
--xunit-xml-output=${results_dir}/results.xml \
3146-
--param dotest-args="--build-dir ${lldb_build_dir}/lldb-test-build.noindex ${LLDB_TEST_SUBDIR_CLAUSE} ${LLDB_TEST_CATEGORIES} -t -E \"${DOTEST_EXTRA}\""
3144+
call "${llvm_build_dir}/bin/llvm-lit" \
3145+
"${lldb_build_dir}/lit" \
3146+
${LLVM_LIT_ARGS} \
3147+
--xunit-xml-output=${results_dir}/results.xml \
3148+
--param dotest-args="--build-dir ${lldb_build_dir}/lldb-test-build.noindex ${LLDB_TEST_SUBDIR_CLAUSE} ${LLDB_TEST_CATEGORIES} -t -E \"${DOTEST_EXTRA}\""
31473149
if [[ -x "${LLDB_TEST_SWIFT_COMPATIBILITY}" ]] ; then
31483150
echo "Running LLDB swift compatibility tests against" \
31493151
"${LLDB_TEST_SWIFT_COMPATIBILITY}"

0 commit comments

Comments
 (0)