Skip to content

Commit fcd4bb2

Browse files
authored
Disable the test category lldb-server for lldb-remote-* builders (#353)
API tests llvm-project/lldb/test/API/tools/lldb-server/* with the category `lldb-server` run lldb-server locally on the host with a random port. Sometimes we got errors like https://lab.llvm.org/buildbot/#/builders/195/builds/3145 https://lab.llvm.org/buildbot/#/builders/197/builds/312 The patch llvm/llvm-project#118222 improved the situation but did not fix it completely.
1 parent c1604f2 commit fcd4bb2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

buildbot/osuosl/master/config/builders.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3446,7 +3446,8 @@
34463446
"LLDB_CAN_USE_LLDB_SERVER" : "OFF",
34473447
"LLDB_TEST_USER_ARGS" : util.Interpolate(
34483448
"--env;ARCH_CFLAGS=-mcpu=cortex-a78;" \
3449-
"--platform-name;remote-linux"),
3449+
"--platform-name;remote-linux;" \
3450+
"--skip-category=lldb-server"),
34503451
},
34513452
cmake_options = [
34523453
"-C", util.Interpolate("%(prop:srcdir_relative)s/clang/cmake/caches/CrossWinToARMLinux.cmake"),
@@ -3573,7 +3574,8 @@
35733574
"LLDB_CAN_USE_LLDB_SERVER" : "OFF",
35743575
"LLDB_TEST_USER_ARGS" : util.Interpolate(
35753576
"--env;ARCH_CFLAGS=-mcpu=cortex-a78;" \
3576-
"--platform-name;remote-linux"),
3577+
"--platform-name;remote-linux;" \
3578+
"--skip-category=lldb-server"),
35773579
},
35783580
cmake_options = [
35793581
"-C", util.Interpolate("%(prop:srcdir_relative)s/clang/cmake/caches/CrossWinToARMLinux.cmake"),

0 commit comments

Comments
 (0)