Skip to content

Commit 023e898

Browse files
committed
[lldb] Flags for running Shell tests remotely on "lldb-remote-linux-ubuntu" builder
dotest.py flags replaced with CMake flags introduced in llvm/llvm-project#95986 to run Shell tests remotely. Also, USE_LLVM_TOOLS is removed since it's implied by default that LLVM tools will be used for API tests since llvm/llvm-project#109961.
1 parent 993f9d6 commit 023e898

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

buildbot/osuosl/master/config/builders.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3330,6 +3330,9 @@
33303330

33313331
"LLDB_TEST_ARCH" : "aarch64",
33323332
"LLDB_TEST_COMPILER" : util.Interpolate("%(prop:tools_root_path)s/aarch64-clang-18/bin/clang"),
3333+
"LLDB_TEST_PLATFORM_URL" : util.Interpolate("connect://%(prop:remote_test_host)s:1234"),
3334+
"LLDB_TEST_PLATFORM_WORKING_DIR": "/home/ubuntu/lldb-tests",
3335+
"LLDB_TEST_SYSROOT" : util.Interpolate("%(prop:sysroot_path_aarch64)s"),
33333336
"LLDB_ENABLE_PYTHON" : "ON",
33343337
"LLDB_ENABLE_SWIG" : "ON",
33353338
"LLDB_ENABLE_LIBEDIT" : "OFF",
@@ -3340,11 +3343,8 @@
33403343
# We are going to build it for the target platform later.
33413344
"LLDB_CAN_USE_LLDB_SERVER" : "OFF",
33423345
"LLDB_TEST_USER_ARGS" : util.Interpolate(
3343-
"--env;USE_LLVM_TOOLS=1;--env;ARCH_CFLAGS=-mcpu=cortex-a78;" \
3344-
"--sysroot=%(prop:sysroot_path_aarch64)s;" \
3345-
"--platform-name;remote-linux;" \
3346-
"--platform-url;connect://%(prop:remote_test_host)s:1234;" \
3347-
"--platform-working-dir;/home/ubuntu/lldb-tests"),
3346+
"--env;ARCH_CFLAGS=-mcpu=cortex-a78;" \
3347+
"--platform-name;remote-linux"),
33483348
},
33493349
cmake_options = {
33503350
},

0 commit comments

Comments
 (0)