We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ed67ca commit ec8df55Copy full SHA for ec8df55
lldb/test/CMakeLists.txt
@@ -11,10 +11,14 @@ endif()
11
12
if(LLDB_ENFORCE_STRICT_TEST_REQUIREMENTS)
13
message(STATUS "Enforcing strict test requirements for LLDB")
14
- set(useful_python_modules
15
- psutil # Lit uses psutil to do per-test timeouts.
16
- pexpect # We no longer vendor pexpect.
17
- )
+ # Lit uses psutil to do per-test timeouts.
+ set(useful_python_modules psutil)
+
+ if(NOT WIN32)
18
+ # We no longer vendor pexpect and it is not used on Windows.
19
+ list(APPEND pexpect)
20
+ endif()
21
22
foreach(module ${useful_python_modules})
23
lldb_find_python_module(${module})
24
if (NOT PY_${module}_FOUND)
0 commit comments