2aacef
From 922c24e6b2074d63dd5554f2f0015a680958293e Mon Sep 17 00:00:00 2001
2aacef
From: Frantisek Sumsal <frantisek@sumsal.cz>
2aacef
Date: Mon, 23 Jan 2023 18:40:38 +0100
2aacef
Subject: [PATCH] test: bump the client-side timeout in sd-bus as well
2aacef
2aacef
Since c78d18215b D-Bus services now have 60s to start, but the client
2aacef
side (sd-bus) still waits only for 25s before giving up:
2aacef
2aacef
```
2aacef
[  226.196380] testsuite-71.sh[556]: + assert_in 'Static hostname: H' ''
2aacef
[  226.332965] testsuite-71.sh[576]: + set +ex
2aacef
[  226.332965] testsuite-71.sh[576]: FAIL: 'Static hostname: H' not found in:
2aacef
[  228.910782] sh[577]: + systemctl poweroff --no-block
2aacef
[  232.255584] hostnamectl[565]: Failed to query system properties: Connection timed out
2aacef
[  236.827514] systemd[1]: end.service: Consumed 2.131s CPU time.
2aacef
[  237.476969] dbus-daemon[566]: [system] Successfully activated service 'org.freedesktop.hostname1'
2aacef
[  237.516308] systemd[1]: system-modprobe.slice: Consumed 1.533s CPU time.
2aacef
[  237.794635] systemd[1]: testsuite-71.service: Main process exited, code=exited, status=1/FAILURE
2aacef
[  237.818469] systemd[1]: testsuite-71.service: Failed with result 'exit-code'.
2aacef
[  237.931415] systemd[1]: Failed to start testsuite-71.service.
2aacef
[  238.000833] systemd[1]: testsuite-71.service: Consumed 5.651s CPU time.
2aacef
[  238.181030] systemd[1]: Reached target testsuite.target.
2aacef
```
2aacef
2aacef
Let's override the timeout in sd-bus as well to mitigate this.
2aacef
2aacef
Follow-up to c78d18215b3e5b0f0896ddb1d0d72c666b5e830b.
2aacef
2aacef
(cherry picked from commit e0cbb739113b9e2fbb67b27099430c351f03315c)
2aacef
2aacef
Related: #2138081
2aacef
---
2aacef
 test/test-functions | 3 +++
2aacef
 1 file changed, 3 insertions(+)
2aacef
2aacef
diff --git a/test/test-functions b/test/test-functions
2aacef
index 6e4ea80d89..1608644cbb 100644
2aacef
--- a/test/test-functions
2aacef
+++ b/test/test-functions
2aacef
@@ -1920,6 +1920,9 @@ EOF
2aacef
     <limit name="service_start_timeout">60000</limit>
2aacef
 </busconfig>
2aacef
 EOF
2aacef
+        # Bump the client-side timeout in sd-bus as well
2aacef
+        mkdir -p "$initdir/etc/systemd/system.conf.d"
2aacef
+        echo -e '[Manager]\nDefaultEnvironment=SYSTEMD_BUS_TIMEOUT=60' >"$initdir/etc/systemd/system.conf.d/bus-timeout.conf"
2aacef
     fi
2aacef
 }
2aacef