Skip to content

Commit

Permalink
[lldb] Add pexpect to LLDB_ENFORCE_STRICT_TEST_REQUIREMENTS
Browse files Browse the repository at this point in the history
This executed Alex' idea [1] of adding pexpect to the list of "strict
test requirements" as we're planning to stop vendoring it. This will
ensure all the bots have the package before we toggle the default.

[1] #83191
  • Loading branch information
JDevlieghere committed Feb 29, 2024
1 parent 310ed33 commit 5a0bd2a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lldb/test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ endif()
if(LLDB_ENFORCE_STRICT_TEST_REQUIREMENTS)
message(STATUS "Enforcing strict test requirements for LLDB")
set(useful_python_modules
psutil # Lit uses psutil to do per-test timeouts.
psutil # Lit uses psutil to do per-test timeouts.
pexpect # We no longer vendor pexpect.
)
foreach(module ${useful_python_modules})
lldb_find_python_module(${module})
Expand Down

0 comments on commit 5a0bd2a

Please sign in to comment.