]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
test: Add a test case for #15654
authorBenjamin Robin <dev@benjarobin.fr>
Wed, 6 May 2020 21:28:02 +0000 (23:28 +0200)
committerLennart Poettering <lennart@poettering.net>
Wed, 13 May 2020 19:32:42 +0000 (21:32 +0200)
test/units/testsuite-04.sh

index 6e7627313cfa0ba2ca28d7d50d9f43d61539a6ae..df216a06a3f7cf463848fabef7ac95a8468ea34a 100755 (executable)
@@ -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.