mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-22 18:05:10 +00:00
When running the command 'make docker-test', almost all zdtm tests fail, logging 'ip: not found'. 'ip' command of the iproute2 package was missing. So added the package to the list of dependencies in 'apt-packages.sh'. Now tests run Signed-off-by: ImranullahKhann <imranullahkhann2004@gmail.com>
44 lines
758 B
Bash
Executable file
44 lines
758 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
APT_INSTALL="$(cd "$(dirname "$0")/.." >/dev/null 2>&1 && pwd)/apt-install"
|
|
if [ ! -x "$APT_INSTALL" ]; then
|
|
echo "Error: apt-install not found or not executable"
|
|
exit 1
|
|
fi
|
|
|
|
"$APT_INSTALL" \
|
|
asciidoctor \
|
|
bash \
|
|
bsdmainutils \
|
|
build-essential \
|
|
gdb \
|
|
git-core \
|
|
iproute2 \
|
|
iptables \
|
|
kmod \
|
|
libaio-dev \
|
|
libbsd-dev \
|
|
libcap-dev \
|
|
libdrm-dev \
|
|
libelf-dev \
|
|
libgnutls28-dev \
|
|
libgnutls30 \
|
|
libnet-dev \
|
|
libnl-3-dev \
|
|
libnl-route-3-dev \
|
|
libperl-dev \
|
|
libprotobuf-c-dev \
|
|
libprotobuf-dev \
|
|
libselinux-dev \
|
|
libtraceevent-dev \
|
|
libtracefs-dev \
|
|
pkg-config \
|
|
protobuf-c-compiler \
|
|
protobuf-compiler \
|
|
python3-importlib-metadata \
|
|
python3-pip \
|
|
python3-protobuf \
|
|
python3-yaml \
|
|
time \
|
|
util-linux \
|
|
uuid-dev
|