]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
test: make dfuzzer less verbose
authorFrantisek Sumsal <frantisek@sumsal.cz>
Tue, 21 Jun 2022 08:04:03 +0000 (10:04 +0200)
committerFrantisek Sumsal <frantisek@sumsal.cz>
Tue, 21 Jun 2022 08:04:03 +0000 (10:04 +0200)
Otherwise it oversaturates the journal, which in some cases can't keep
up with the load of messages (due to the performance penalty caused by
sanitizers), and gets killed by a watchdog.

test/units/testsuite-21.sh

index 43b5fb6f220c2c7a20f94ab0f193a65eec141a85..604bf145cac2e8bb30e2f2adf9efff945fce48b0 100755 (executable)
@@ -72,7 +72,7 @@ mount -t tmpfs -o size=50M tmpfs /var/lib/machines
 for bus in "${BUS_LIST[@]}"; do
     echo "Bus: $bus (system)"
     systemd-run --pipe --wait \
-                -- dfuzzer -v -b "$PAYLOAD_MAX" -n "$bus"
+                -- dfuzzer -b "$PAYLOAD_MAX" -n "$bus"
 
     # Let's reload the systemd daemon to test (de)serialization as well
     systemctl daemon-reload
@@ -83,7 +83,7 @@ umount /var/lib/machines
 for bus in "${SESSION_BUS_LIST[@]}"; do
     echo "Bus: $bus (session)"
     systemd-run --machine 'testuser@.host' --user --pipe --wait \
-                -- dfuzzer -v -b "$PAYLOAD_MAX" -n "$bus"
+                -- dfuzzer -b "$PAYLOAD_MAX" -n "$bus"
 
     # Let's reload the systemd user daemon to test (de)serialization as well
     systemctl --machine 'testuser@.host' --user daemon-reload