mirror of
https://github.com/systemd/systemd.git
synced 2024-11-07 01:27:11 +03:00
cc5549ca12
We had all kinds of indentation: 2 sp, 3 sp, 4 sp, 8 sp, and mixed. 4 sp was the most common, in particular the majority of scripts under test/ used that. Let's standarize on 4 sp, because many commandlines are long and there's a lot of nesting, and with 8sp indentation less stuff fits. 4 sp also seems to be the default indentation, so this will make it less likely that people will mess up if they don't load the editor config. (I think people often use vi, and vi has no support to load project-wide configuration automatically. We distribute a .vimrc file, but it is not loaded by default, and even the instructions in it seem to discourage its use for security reasons.) Also remove the few vim config lines that were left. We should either have them on all files, or none. Also remove some strange stuff like '#!/bin/env bash', yikes.
23 lines
1.1 KiB
Bash
Executable File
23 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
set -x
|
|
|
|
apt-get update
|
|
apt-get build-dep systemd -y
|
|
apt-get install -y util-linux libmount-dev libblkid-dev liblzma-dev libqrencode-dev libmicrohttpd-dev iptables-dev liblz4-dev libcurl4-gnutls-dev unifont itstool kbd cryptsetup-bin net-tools isc-dhcp-client iputils-ping strace qemu-system-x86 linux-image-virtual mount libgpg-error-dev libxkbcommon-dev python-lxml python3-lxml python3-pip libcap-dev
|
|
apt-get install -y gettext python3-evdev python3-pyparsing libmount-dev python3-setuptools ninja-build
|
|
pip3 install meson
|
|
|
|
cd $REPO_ROOT
|
|
|
|
sed -i 's/2\.30/2.27/' meson.build
|
|
|
|
meson --werror -Db_sanitize=address,undefined -Dsplit-usr=true build
|
|
ninja -v -C build
|
|
make -C test/TEST-01-BASIC clean setup run TEST_NO_QEMU=yes NSPAWN_ARGUMENTS=--keep-unit RUN_IN_UNPRIVILEGED_CONTAINER=no
|
|
|
|
# Now that we're more or less sure that ASan isn't going to crash systemd and cause a kernel panic
|
|
# let's also run the test with QEMU to cover udevd, sysctl and everything else that isn't run
|
|
# in containers.
|
|
make -C test/TEST-01-BASIC clean setup run TEST_NO_NSPAWN=yes
|