mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 00:51:24 +03:00
097d8c6eb7
No need to call setup_nspawn_root() if we plan to only run under qemu.
23 lines
406 B
Bash
Executable File
23 lines
406 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
TEST_DESCRIPTION="test MUMAPolicy= and NUMAMask= options"
|
|
TEST_NO_NSPAWN=1
|
|
QEMU_OPTIONS="-numa node,nodeid=0"
|
|
|
|
. $TEST_BASE_DIR/test-functions
|
|
|
|
test_setup() {
|
|
create_empty_image_rootdir
|
|
|
|
(
|
|
LOG_LEVEL=5
|
|
eval $(udevadm info --export --query=env --name=${LOOPDEV}p2)
|
|
|
|
setup_basic_environment
|
|
mask_supporting_services
|
|
)
|
|
}
|
|
|
|
do_test "$@" 36
|