diff options
author | Michael Weghorn <m.weghorn@posteo.de> | 2024-07-16 11:08:13 +0200 |
---|---|---|
committer | Michael Weghorn <m.weghorn@posteo.de> | 2024-07-16 12:47:45 +0200 |
commit | 5495a2ef9c5e0a457c44e2fe0f6a62effda43ebc (patch) | |
tree | 859aded8bae8bd238e16c0fc23feb9c6bdf2e632 /test | |
parent | 4f63dd8b374ce6e5c6fd783625c287eef6079265 (diff) |
a11y tests: Double the timeout for UI tests
Increase the timeout for a11y UI tests from 1 to 2 min,
to see whether this helps with one slow Windows Jenkins
builder running into the timeout every once in a while,
as was mentioned in ESC calls.
Example from [1]:
timeout waiting for dialog 'Bookmark' to show up
warn:vcl.schedule:6600:11456:vcl/source/app/scheduler.cxx:524: Uncaught exception during Task::Invoke()!
abort() has been calledwarn:sal.cppunittester:6600:11456:sal/cppunittester/cppunittester.cxx:601: CAUGHT SIGABRT:
[...]
[1] https://ci.libreoffice.org/job/gerrit_windows/181051/console
Change-Id: I5b16ea8c538f6e2b5a30ebac714e177e696aac92
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/170569
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Tested-by: Jenkins
Diffstat (limited to 'test')
-rw-r--r-- | test/source/a11y/accessibletestbase.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/source/a11y/accessibletestbase.cxx b/test/source/a11y/accessibletestbase.cxx index 27bea36f6084..5d8f50c90f10 100644 --- a/test/source/a11y/accessibletestbase.cxx +++ b/test/source/a11y/accessibletestbase.cxx @@ -436,7 +436,7 @@ test::AccessibleTestBase::awaitDialog(const std::u16string_view name, mxToolkit->addTopWindowListener(mxTopWindowListener); maTimeoutTimer.SetInvokeHandler(LINK(this, ListenerHelper, timeoutTimerHandler)); - maTimeoutTimer.SetTimeout(60000); + maTimeoutTimer.SetTimeout(120000); maTimeoutTimer.Start(); maIdleHandler.SetInvokeHandler(LINK(this, ListenerHelper, idleHandler)); |