mirror of
https://github.com/systemd/systemd.git
synced 2024-11-05 06:52:22 +03:00
235ecb6d75
This fixes the following log message ``` Container TEST-07-ISSUE-1981 terminated by signal KILL. E: test timed out after 30s s ```
39 lines
740 B
Bash
Executable File
39 lines
740 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
TEST_DESCRIPTION="https://github.com/systemd/systemd/issues/1981"
|
|
TEST_NO_QEMU=1
|
|
|
|
. $TEST_BASE_DIR/test-functions
|
|
|
|
NSPAWN_TIMEOUT=30
|
|
|
|
test_setup() {
|
|
create_empty_image_rootdir
|
|
|
|
# Create what will eventually be our root filesystem onto an overlay
|
|
(
|
|
LOG_LEVEL=5
|
|
eval $(udevadm info --export --query=env --name=${LOOPDEV}p2)
|
|
|
|
setup_basic_environment
|
|
mask_supporting_services
|
|
|
|
# setup the testsuite service
|
|
cat >$initdir/etc/systemd/system/testsuite.service <<EOF
|
|
[Unit]
|
|
Description=Testsuite service
|
|
|
|
[Service]
|
|
ExecStart=/test-segfault.sh
|
|
Type=oneshot
|
|
EOF
|
|
|
|
cp test-segfault.sh $initdir/
|
|
|
|
setup_testsuite
|
|
)
|
|
setup_nspawn_root
|
|
}
|
|
|
|
do_test "$@"
|