mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-02-01 05:47:04 +03:00
test: move TEST-10-ISSUE-2467 setup to static files
This commit is contained in:
parent
4110a6deb9
commit
8c6d58f65d
@ -14,35 +14,8 @@ test_setup() {
|
||||
|
||||
setup_basic_environment
|
||||
mask_supporting_services
|
||||
dracut_install true rm socat
|
||||
|
||||
# setup the testsuite service
|
||||
cat >$initdir/etc/systemd/system/testsuite.service <<'EOF'
|
||||
[Unit]
|
||||
Description=Testsuite service
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
ExecStart=/bin/sh -e -x -c 'rm -f /tmp/nonexistent; systemctl start test.socket; printf x > test.file; socat -t20 OPEN:test.file UNIX-CONNECT:/run/test.ctl; >/testok'
|
||||
EOF
|
||||
|
||||
cat >$initdir/etc/systemd/system/test.socket <<'EOF'
|
||||
[Socket]
|
||||
ListenStream=/run/test.ctl
|
||||
EOF
|
||||
|
||||
cat > $initdir/etc/systemd/system/test.service <<'EOF'
|
||||
[Unit]
|
||||
Requires=test.socket
|
||||
ConditionPathExistsGlob=/tmp/nonexistent
|
||||
|
||||
[Service]
|
||||
ExecStart=/bin/true
|
||||
EOF
|
||||
|
||||
setup_testsuite
|
||||
)
|
||||
setup_nspawn_root
|
||||
}
|
||||
|
||||
do_test "$@"
|
||||
do_test "$@" 10
|
||||
|
@ -16,6 +16,8 @@ install_subdir('testsuite-04.units',
|
||||
install_dir : testdata_dir)
|
||||
install_subdir('testsuite-06.units',
|
||||
install_dir : testdata_dir)
|
||||
install_subdir('testsuite-10.units',
|
||||
install_dir : testdata_dir)
|
||||
|
||||
testsuite08_dir = testdata_dir + '/testsuite-08.units'
|
||||
install_data('testsuite-08.units/-.mount',
|
||||
|
@ -64,6 +64,7 @@ BASICTOOLS=(
|
||||
setsid
|
||||
sh
|
||||
sleep
|
||||
socat
|
||||
sulogin
|
||||
tail
|
||||
tee
|
||||
|
6
test/testsuite-10.units/test10.service
Normal file
6
test/testsuite-10.units/test10.service
Normal file
@ -0,0 +1,6 @@
|
||||
[Unit]
|
||||
Requires=test10.socket
|
||||
ConditionPathExistsGlob=/tmp/nonexistent
|
||||
|
||||
[Service]
|
||||
ExecStart=true
|
2
test/testsuite-10.units/test10.socket
Normal file
2
test/testsuite-10.units/test10.socket
Normal file
@ -0,0 +1,2 @@
|
||||
[Socket]
|
||||
ListenStream=/run/test.ctl
|
6
test/units/testsuite-10.service
Normal file
6
test/units/testsuite-10.service
Normal file
@ -0,0 +1,6 @@
|
||||
[Unit]
|
||||
Description=TEST-10-ISSUE-2467
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
ExecStart=sh -e -x -c 'rm -f /tmp/nonexistent; systemctl start test10.socket; printf x >test.file; socat -t20 OPEN:test.file UNIX-CONNECT:/run/test.ctl; >/testok'
|
Loading…
x
Reference in New Issue
Block a user