Kaydet (Commit) ef16c96a authored tarafından Markus Mohrhard's avatar Markus Mohrhard

uitest: disable tests that deadlock with mutex problems

This seems to be a race condition that is not really related to the UI
testing. It should happen any time with out-of-process UNO.

Change-Id: I86e42fc6c3848c4522e6f4e5db72e92917e19286
Reviewed-on: https://gerrit.libreoffice.org/31995Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarMarkus Mohrhard <markus.mohrhard@googlemail.com>
üst c4d74308
...@@ -10,6 +10,7 @@ from libreoffice.uno.propertyvalue import mkPropertyValues ...@@ -10,6 +10,7 @@ from libreoffice.uno.propertyvalue import mkPropertyValues
from uitest.framework import UITestCase from uitest.framework import UITestCase
import time import time
import unittest
class CalcChartUIDemo(UITestCase): class CalcChartUIDemo(UITestCase):
...@@ -108,6 +109,7 @@ class CalcChartUIDemo(UITestCase): ...@@ -108,6 +109,7 @@ class CalcChartUIDemo(UITestCase):
self.ui_test.close_doc() self.ui_test.close_doc()
@unittest.skip("linux deadlock")
def test_activate_chart(self): def test_activate_chart(self):
self.ui_test.create_doc_in_start_center("calc") self.ui_test.create_doc_in_start_center("calc")
...@@ -133,6 +135,7 @@ class CalcChartUIDemo(UITestCase): ...@@ -133,6 +135,7 @@ class CalcChartUIDemo(UITestCase):
self.ui_test.close_doc() self.ui_test.close_doc()
@unittest.skip("linux deadlock")
def select_chart_element(self): def select_chart_element(self):
self.ui_test.create_doc_in_start_center("calc") self.ui_test.create_doc_in_start_center("calc")
......
...@@ -9,7 +9,7 @@ from libreoffice.uno.propertyvalue import mkPropertyValues ...@@ -9,7 +9,7 @@ from libreoffice.uno.propertyvalue import mkPropertyValues
from uitest.framework import UITestCase from uitest.framework import UITestCase
import time import unittest
class CalcChartEditUIDemo(UITestCase): class CalcChartEditUIDemo(UITestCase):
...@@ -33,6 +33,7 @@ class CalcChartEditUIDemo(UITestCase): ...@@ -33,6 +33,7 @@ class CalcChartEditUIDemo(UITestCase):
xGridWindow.executeAction("SELECT", mkPropertyValues({"RANGE": "A1:C2"})) xGridWindow.executeAction("SELECT", mkPropertyValues({"RANGE": "A1:C2"}))
@unittest.skip("deadlock in the chart/embbedobj code")
def test_select_secondary_axis(self): def test_select_secondary_axis(self):
self.ui_test.create_doc_in_start_center("calc") self.ui_test.create_doc_in_start_center("calc")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment