mirror of
https://github.com/python/cpython.git
synced 2024-11-22 13:28:21 +01:00
10e9bb13b8
Regression test that vfork is used when expected by subprocess. This is written integration test style, it uses strace if it is present and appears to work to find out what system call actually gets used in different scenarios. Test coverage is added for the default behavior and that of each of the specific arguments that must disable the use of vfork. obviously not an entire test matrix, but it covers the most important aspects. If there are ever issues with this test being flaky or failing on new platforms, rather than try and adapt it for all possible platforms, feel free to narrow the range it gets tested on when appropriate. That is not likely to reduce coverage.
29 lines
502 B
Bash
Executable File
29 lines
502 B
Bash
Executable File
#!/bin/sh
|
|
apt-get update
|
|
|
|
# autoconf-archive is needed by autoreconf (check_generated_files job)
|
|
apt-get -yq install \
|
|
build-essential \
|
|
pkg-config \
|
|
autoconf-archive \
|
|
ccache \
|
|
gdb \
|
|
lcov \
|
|
libb2-dev \
|
|
libbz2-dev \
|
|
libffi-dev \
|
|
libgdbm-dev \
|
|
libgdbm-compat-dev \
|
|
liblzma-dev \
|
|
libncurses5-dev \
|
|
libreadline6-dev \
|
|
libsqlite3-dev \
|
|
libssl-dev \
|
|
lzma \
|
|
lzma-dev \
|
|
strace \
|
|
tk-dev \
|
|
uuid-dev \
|
|
xvfb \
|
|
zlib1g-dev
|