[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/05: tests: lightdm: Bump timeout waiting for screen text to 60 second
From: |
guix-commits |
Subject: |
05/05: tests: lightdm: Bump timeout waiting for screen text to 60 seconds. |
Date: |
Wed, 19 Jul 2023 10:41:23 -0400 (EDT) |
apteryx pushed a commit to branch master
in repository guix.
commit 1d837aaa32a3a2de8f4a1ac391f92effba50834e
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Wed Jul 19 10:28:35 2023 -0400
tests: lightdm: Bump timeout waiting for screen text to 60 seconds.
This is to avoid non-deterministic failures on slower machines.
* gnu/tests/lightdm.scm (run-lightdm-test) <wait-for-screen-text>: Bump
timeout to 60 s (from the default 30 s).
---
gnu/tests/lightdm.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/tests/lightdm.scm b/gnu/tests/lightdm.scm
index f1c3b67c8a..0fd809a984 100644
--- a/gnu/tests/lightdm.scm
+++ b/gnu/tests/lightdm.scm
@@ -137,7 +137,8 @@
(wait-for-screen-text marionette
(cut string-contains <> "Log In")
#:ocr #$(file-append tesseract-ocr
- "/bin/tesseract")))
+ "/bin/tesseract")
+ #:timeout 60)) ;for slow systems
(test-assert "can connect to TCP port 5900 on IPv4"
(wait-for-tcp-port 5900 marionette))