Skip to content

Commit 7933009

Browse files
committed
[lldb] Add pexpect to LLDB_ENFORCE_STRICT_TEST_REQUIREMENTS
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
1 parent c36cbba commit 7933009

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lldb/test/CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ endif()
1212
if(LLDB_ENFORCE_STRICT_TEST_REQUIREMENTS)
1313
message(STATUS "Enforcing strict test requirements for LLDB")
1414
set(useful_python_modules
15-
psutil # Lit uses psutil to do per-test timeouts.
15+
psutil # Lit uses psutil to do per-test timeouts.
16+
pexpect # We no longer vendor pexpect.
1617
)
1718
foreach(module ${useful_python_modules})
1819
lldb_find_python_module(${module})

0 commit comments

Comments
 (0)