From c11d8fd1dab3bc3f0abbc861ba5eb34518cec1da Mon Sep 17 00:00:00 2001 From: Benjamin Robin Date: Wed, 6 May 2020 23:28:02 +0200 Subject: [PATCH] test: Add a test case for #15654 --- test/units/testsuite-04.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/test/units/testsuite-04.sh b/test/units/testsuite-04.sh index 6e7627313cf..df216a06a3f 100755 --- a/test/units/testsuite-04.sh +++ b/test/units/testsuite-04.sh @@ -87,6 +87,14 @@ 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. -- 2.47.3