8d419f
From 0e72d8a8bbed61ffa3cbf2637f1b29ade7af45be Mon Sep 17 00:00:00 2001
8d419f
From: Frantisek Sumsal <frantisek@sumsal.cz>
8d419f
Date: Tue, 21 Jun 2022 10:04:03 +0200
8d419f
Subject: [PATCH] test: make dfuzzer less verbose
8d419f
8d419f
Otherwise it oversaturates the journal, which in some cases can't keep
8d419f
up with the load of messages (due to the performance penalty caused by
8d419f
sanitizers), and gets killed by a watchdog.
8d419f
8d419f
(cherry picked from commit d3eb4159c9577f0a9ee776d34fcec7ad913d88a5)
8d419f
8d419f
Related: #2087652
8d419f
---
8d419f
 test/units/testsuite-21.sh | 4 ++--
8d419f
 1 file changed, 2 insertions(+), 2 deletions(-)
8d419f
8d419f
diff --git a/test/units/testsuite-21.sh b/test/units/testsuite-21.sh
8d419f
index 43b5fb6f22..604bf145ca 100755
8d419f
--- a/test/units/testsuite-21.sh
8d419f
+++ b/test/units/testsuite-21.sh
8d419f
@@ -72,7 +72,7 @@ mount -t tmpfs -o size=50M tmpfs /var/lib/machines
8d419f
 for bus in "${BUS_LIST[@]}"; do
8d419f
     echo "Bus: $bus (system)"
8d419f
     systemd-run --pipe --wait \
8d419f
-                -- dfuzzer -v -b "$PAYLOAD_MAX" -n "$bus"
8d419f
+                -- dfuzzer -b "$PAYLOAD_MAX" -n "$bus"
8d419f
 
8d419f
     # Let's reload the systemd daemon to test (de)serialization as well
8d419f
     systemctl daemon-reload
8d419f
@@ -83,7 +83,7 @@ umount /var/lib/machines
8d419f
 for bus in "${SESSION_BUS_LIST[@]}"; do
8d419f
     echo "Bus: $bus (session)"
8d419f
     systemd-run --machine 'testuser@.host' --user --pipe --wait \
8d419f
-                -- dfuzzer -v -b "$PAYLOAD_MAX" -n "$bus"
8d419f
+                -- dfuzzer -b "$PAYLOAD_MAX" -n "$bus"
8d419f
 
8d419f
     # Let's reload the systemd user daemon to test (de)serialization as well
8d419f
     systemctl --machine 'testuser@.host' --user daemon-reload