mirror of
https://github.com/systemd/systemd.git
synced 2024-11-08 02:57:16 +03:00
c7934185fe
Basically, this test runs: ``` systemd-nspawn --register=no -D "$_root" -b systemd-nspawn --register=no -D "$_root" --private-network -b systemd-nspawn --register=no -D "$_root" -U -b systemd-nspawn --register=no -D "$_root" --private-network -U -b ``` and exports the `UNIFIED_CGROUP_HIERARCHY=[yes|no]`, `SYSTEMD_NSPAWN_USE_CGNS=[yes|no]` Inspired by * systemd#3589 (comment) * systemd#4372 (comment) * systemd#4223 (comment) * systemd#1555 and so on :-)
12 lines
360 B
Makefile
12 lines
360 B
Makefile
all: has-overflow
|
|
@make -s --no-print-directory -C ../.. all
|
|
@basedir=../.. TEST_BASE_DIR=../ ./test.sh --all
|
|
setup: has-overflow
|
|
@make --no-print-directory -C ../.. all
|
|
@basedir=../.. TEST_BASE_DIR=../ ./test.sh --setup
|
|
clean:
|
|
@basedir=../.. TEST_BASE_DIR=../ ./test.sh --clean
|
|
@rm -f has-overflow
|
|
run:
|
|
@basedir=../.. TEST_BASE_DIR=../ ./test.sh --run
|