vcl/qa/cppunit/a11y/atspi2/atspi2testbase.hxx | 3 +++ 1 file changed, 3 insertions(+)
New commits: commit 150a1528882347882e857649290fe81d5aa08345 Author: Colomban Wendling <cwendl...@hypra.fr> AuthorDate: Thu Aug 3 16:09:27 2023 +0200 Commit: Michael Weghorn <m.wegh...@posteo.de> CommitDate: Fri Aug 4 07:55:55 2023 +0200 gtk3 a11y tests: Increase DBus timeout We apparently get recurrent spurious timeout failures in the CI related to DBus timeout, so increase that value. The chosen value is a bit arbitrary, but is below the maximum recommended by the documentation (even though the recommendation hardly applies to our use case), and more than 3 times larger than the default. That will hopefully be enough. Change-Id: I244f711f46353009743015d00b303aeb87332936 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155310 Tested-by: Jenkins Reviewed-by: Michael Weghorn <m.wegh...@posteo.de> diff --git a/vcl/qa/cppunit/a11y/atspi2/atspi2testbase.hxx b/vcl/qa/cppunit/a11y/atspi2/atspi2testbase.hxx index 12a58da79d4b..bcde764aa981 100644 --- a/vcl/qa/cppunit/a11y/atspi2/atspi2testbase.hxx +++ b/vcl/qa/cppunit/a11y/atspi2/atspi2testbase.hxx @@ -79,6 +79,9 @@ public: { if (!atspi_is_initialized()) atspi_init(); + + // increase timeout to avoid spurious avoid CI failures + atspi_set_timeout(2500, 15000); } virtual void setUp() override