Skip to content

Commit b9fa21c

Browse files
authored
[lldb] Flags for running Shell tests remotely on "lldb-remote-linux-ubuntu" builder (#270)
dotest.py flags are 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 9484798 commit b9fa21c

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
@@ -3328,6 +3328,9 @@
33283328

33293329
"LLDB_TEST_ARCH" : "aarch64",
33303330
"LLDB_TEST_COMPILER" : util.Interpolate("%(prop:tools_root_path)s/aarch64-clang-18/bin/clang"),
3331+
"LLDB_TEST_PLATFORM_URL" : util.Interpolate("connect://%(prop:remote_test_host)s:1234"),
3332+
"LLDB_TEST_PLATFORM_WORKING_DIR": "/home/ubuntu/lldb-tests",
3333+
"LLDB_TEST_SYSROOT" : util.Interpolate("%(prop:sysroot_path_aarch64)s"),
33313334
"LLDB_ENABLE_PYTHON" : "ON",
33323335
"LLDB_ENABLE_SWIG" : "ON",
33333336
"LLDB_ENABLE_LIBEDIT" : "OFF",
@@ -3338,11 +3341,8 @@
33383341
# We are going to build it for the target platform later.
33393342
"LLDB_CAN_USE_LLDB_SERVER" : "OFF",
33403343
"LLDB_TEST_USER_ARGS" : util.Interpolate(
3341-
"--env;USE_LLVM_TOOLS=1;--env;ARCH_CFLAGS=-mcpu=cortex-a78;" \
3342-
"--sysroot=%(prop:sysroot_path_aarch64)s;" \
3343-
"--platform-name;remote-linux;" \
3344-
"--platform-url;connect://%(prop:remote_test_host)s:1234;" \
3345-
"--platform-working-dir;/home/ubuntu/lldb-tests"),
3344+
"--env;ARCH_CFLAGS=-mcpu=cortex-a78;" \
3345+
"--platform-name;remote-linux"),
33463346
},
33473347
cmake_options = {
33483348
},

0 commit comments

Comments
 (0)