summaryrefslogtreecommitdiff
path: root/sc/qa/uitest/calc_tests8
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2023-11-10 08:26:16 +0100
committerStephan Bergmann <sbergman@redhat.com>2023-11-10 13:33:26 +0100
commitc1bd25e4674571e04b6445af36e4520a70ac166b (patch)
treeddd48425574221da7438884d09ba1014cb2fd0d1 /sc/qa/uitest/calc_tests8
parent28756e84e48330b12087f6fc7d043c2fc5d67f28 (diff)
Disable flakey navigator UITest again
f2ba17fecb60d936599efb975d96a3ea06c2a43f "disable more flakey navigator UITest", then 0a0c5a5b0521bea6cb695731d448e62c41ed4c57 "UITest_sw_navigator: avoid oneprocess" enabled it again, apparently in the false hopes that non-oneprocess would magically fix this issue. But this still causes frequent failures, e.g., <https://ci.libreoffice.org//job/lo_ubsan/2974/> failed with > ====================================================================== > FAIL: test_tdf134390 (navigator.navigator) > ---------------------------------------------------------------------- > Traceback (most recent call last): > File "/home/tdf/lode/jenkins/workspace/lo_ubsan/sc/qa/uitest/calc_tests8/navigator.py", line 145, in test_tdf134390 > self.assertEqual(get_state_as_dict(xColumn)['Value'], '2') > AssertionError: '1' != '2' > - 1 > + 2 and <https://ci.libreoffice.org//job/lo_ubsan/2975/> failed with > ====================================================================== > FAIL: test_tdf134390 (navigator.navigator) > ---------------------------------------------------------------------- > Traceback (most recent call last): > File "/home/tdf/lode/jenkins/workspace/lo_ubsan/sc/qa/uitest/calc_tests8/navigator.py", line 145, in test_tdf134390 > self.assertEqual(get_state_as_dict(xColumn)['Value'], '2') > AssertionError: '53' != '2' > - 53 > + 2 Change-Id: I39e878c20085cca3233f7c8859b9a1d28fcc56c8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159262 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sc/qa/uitest/calc_tests8')
-rw-r--r--sc/qa/uitest/calc_tests8/navigator.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/qa/uitest/calc_tests8/navigator.py b/sc/qa/uitest/calc_tests8/navigator.py
index f917e6e84b30..ec8fa2ae9a2e 100644
--- a/sc/qa/uitest/calc_tests8/navigator.py
+++ b/sc/qa/uitest/calc_tests8/navigator.py
@@ -142,7 +142,8 @@ class navigator(UITestCase):
xColumn.executeAction("TYPE", mkPropertyValues({"TEXT":"B"}))
xColumn.executeAction("TYPE", mkPropertyValues({"KEYCODE":"RETURN"}))
xToolkit.processEventsToIdle()
- self.assertEqual(get_state_as_dict(xColumn)['Value'], '2')
+# disable flakey UITest
+# self.assertEqual(get_state_as_dict(xColumn)['Value'], '2')
xRow.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+A"}))
xRow.executeAction("TYPE", mkPropertyValues({"KEYCODE":"BACKSPACE"}))