https://github.com/DavidSpickett created https://github.com/llvm/llvm-project/pull/94220
This means that CI won't have to hardcode these. We can't do conditional installs here by platform so pexpect is listed normally. If it's installed on Windows that's fine, we just won't use it. >From e5a6eca78496e6f5ac67613f1f8368cf24ea1521 Mon Sep 17 00:00:00 2001 From: David Spickett <david.spick...@linaro.org> Date: Mon, 3 Jun 2024 13:39:16 +0000 Subject: [PATCH] [lldb] Add Python requirements.txt for test suite This means that CI won't have to hardcode these. We can't do conditional installs here by platform so pexpect is listed normally. If it's installed on Windows that's fine, we just won't use it. --- lldb/requirements.txt | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 lldb/requirements.txt diff --git a/lldb/requirements.txt b/lldb/requirements.txt new file mode 100644 index 0000000000000..645004bd3f57c --- /dev/null +++ b/lldb/requirements.txt @@ -0,0 +1,7 @@ +# These Python packages are required to be able to run the LLDB test suite. + +psutil +# pexpect is only required on Linux, can be installed on Windows but pexpect +# tests are automatically skipped there because they are known not to work +# (llvm.org/pr22274). +pexpect _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits