You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.3 KiB
35 lines
1.3 KiB
2 years ago
|
From e019afeefb396ea42d03f4c3f9713e262aff6450 Mon Sep 17 00:00:00 2001
|
||
|
From: Benjamin Robin <dev@benjarobin.fr>
|
||
|
Date: Wed, 6 May 2020 23:28:02 +0200
|
||
|
Subject: [PATCH] test: Add a test case for #15654
|
||
|
|
||
|
(cherry picked from commit c11d8fd1dab3bc3f0abbc861ba5eb34518cec1da)
|
||
|
|
||
|
Related: #2029426
|
||
|
---
|
||
|
test/TEST-04-JOURNAL/test-journal.sh | 11 +++++++++++
|
||
|
1 file changed, 11 insertions(+)
|
||
|
|
||
|
diff --git a/test/TEST-04-JOURNAL/test-journal.sh b/test/TEST-04-JOURNAL/test-journal.sh
|
||
|
index a3db1a7472..bdf137cd69 100755
|
||
|
--- a/test/TEST-04-JOURNAL/test-journal.sh
|
||
|
+++ b/test/TEST-04-JOURNAL/test-journal.sh
|
||
|
@@ -76,6 +76,17 @@ journalctl -b -o export -t "$ID" --output-fields=_PID | grep '^_PID=' >/output
|
||
|
grep -q "^_PID=$PID" /output
|
||
|
grep -vq "^_PID=$PID" /output
|
||
|
|
||
|
+# https://github.com/systemd/systemd/issues/15654
|
||
|
+ID=$(journalctl --new-id128 | sed -n 2p)
|
||
|
+printf "This will\nusually fail\nand be truncated\n">/expected
|
||
|
+systemd-cat -t "$ID" /bin/sh -c 'env echo -n "This will";echo;env echo -n "usually fail";echo;env echo -n "and be truncated";echo;'
|
||
|
+journalctl --sync
|
||
|
+journalctl -b -o cat -t "$ID" >/output
|
||
|
+cmp /expected /output
|
||
|
+
|
||
|
+# Add new tests before here, the journald restarts below
|
||
|
+# may make tests flappy.
|
||
|
+
|
||
|
# Don't lose streams on restart
|
||
|
systemctl start forever-print-hola
|
||
|
sleep 3
|