This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 6cfea0e121 tests: samba: Add delay in some tests.
6cfea0e121 is described below
commit 6cfea0e121e8c60d20bde3a170e95e892266f792
Author: Efraim Flashner <[email protected]>
AuthorDate: Sun Oct 26 12:09:49 2025 +0200
tests: samba: Add delay in some tests.
* gnu/tests/samba.scm (run-samba-test)[smbclient connect, smbclient
connect]: Add a delay before checking the connection to the samba
server.
Change-Id: Iffe378756f05b8b1a63e861ed626c943aceb3fc2
---
gnu/tests/samba.scm | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/gnu/tests/samba.scm b/gnu/tests/samba.scm
index db9f27c9ce..a4bcba9b64 100644
--- a/gnu/tests/samba.scm
+++ b/gnu/tests/samba.scm
@@ -137,15 +137,19 @@
(test-equal "smbclient connect"
0
(marionette-eval
- '(system* #$(file-append samba "/bin/smbclient")
- "--list=localhost" "--no-pass")
+ '(begin
+ (sleep 2)
+ (system* #$(file-append samba "/bin/smbclient")
+ "--list=localhost" "--no-pass"))
marionette))
(test-equal "smbclient connect"
0
(marionette-eval
- '(system* #$(file-append samba "/bin/smbclient")
- "--list=localhost" "--no-pass")
+ '(begin
+ (sleep 2)
+ (system* #$(file-append samba "/bin/smbclient")
+ "--list=localhost" "--no-pass"))
marionette))
(test-end))))