Skip to content

Commit

Permalink
tests: add regression test for systemctl restart systemd-journald
Browse files Browse the repository at this point in the history
  • Loading branch information
evverx committed Dec 30, 2015
1 parent a7984d8 commit e19eadb
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
8 changes: 8 additions & 0 deletions test/TEST-04-JOURNAL/test-journal.sh
Expand Up @@ -51,5 +51,13 @@ journalctl --sync
journalctl -b -o cat -t "$ID" >/output
cmp /expected /output

# Don't lose streams on restart
systemctl start forever-print-hola
sleep 3
systemctl restart systemd-journald
sleep 3
systemctl stop forever-print-hola
[[ ! -f "/i-lose-my-logs" ]]

touch /testok
exit 0
9 changes: 9 additions & 0 deletions test/TEST-04-JOURNAL/test.sh
Expand Up @@ -55,6 +55,15 @@ After=multi-user.target
[Service]
ExecStart=/test-journal.sh
Type=oneshot
EOF

cat >$initdir/etc/systemd/system/forever-print-hola.service <<EOF
[Unit]
Description=ForeverPrintHola service
[Service]
Type=simple
ExecStart=/bin/sh -x -c 'while :; do printf "Hola\n" || touch /i-lose-my-logs; sleep 1; done'
EOF

cp test-journal.sh $initdir/
Expand Down

0 comments on commit e19eadb

Please sign in to comment.