Skip to content

Commit

Permalink
Disable the test category lldb-server for lldb-remote-* builders (#353
Browse files Browse the repository at this point in the history
)

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.
  • Loading branch information
slydiman authored Jan 13, 2025
1 parent c1604f2 commit fcd4bb2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions buildbot/osuosl/master/config/builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -3446,7 +3446,8 @@
"LLDB_CAN_USE_LLDB_SERVER" : "OFF",
"LLDB_TEST_USER_ARGS" : util.Interpolate(
"--env;ARCH_CFLAGS=-mcpu=cortex-a78;" \
"--platform-name;remote-linux"),
"--platform-name;remote-linux;" \
"--skip-category=lldb-server"),
},
cmake_options = [
"-C", util.Interpolate("%(prop:srcdir_relative)s/clang/cmake/caches/CrossWinToARMLinux.cmake"),
Expand Down Expand Up @@ -3573,7 +3574,8 @@
"LLDB_CAN_USE_LLDB_SERVER" : "OFF",
"LLDB_TEST_USER_ARGS" : util.Interpolate(
"--env;ARCH_CFLAGS=-mcpu=cortex-a78;" \
"--platform-name;remote-linux"),
"--platform-name;remote-linux;" \
"--skip-category=lldb-server"),
},
cmake_options = [
"-C", util.Interpolate("%(prop:srcdir_relative)s/clang/cmake/caches/CrossWinToARMLinux.cmake"),
Expand Down

0 comments on commit fcd4bb2

Please sign in to comment.