aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRenato Araujo Oliveira Filho <renato.filho@openbossa.org>2010-12-22 10:17:21 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:48:01 -0300
commitcebdd1f4dcb057436878b60295684c24cb09f1d9 (patch)
tree8803350d045c42523df9dbf6c79642ff68555433
parent45edcc54a6215e161cc0c176daf5e3b4dc3aeaff (diff)
Avoid QMatrix test while gcc is broken.
-rw-r--r--tests/QtGui/deepcopy_test.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/QtGui/deepcopy_test.py b/tests/QtGui/deepcopy_test.py
index 2f8f7deb7..3e9f0f831 100644
--- a/tests/QtGui/deepcopy_test.py
+++ b/tests/QtGui/deepcopy_test.py
@@ -53,6 +53,10 @@ class QMatrixDeepCopy(DeepCopyHelper, unittest.TestCase):
def setUp(self):
self.original = QMatrix(1, 2, 3, 4, 5, 6)
+
+# Avoid these tests until get gcc fixed
+# Related bug: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43247
+"""
class QMatrix2x2DeepCopy(DeepCopyHelper, unittest.TestCase):
def setUp(self):
self.original = QMatrix2x2([1, 2, 3, 4])
@@ -88,6 +92,7 @@ class QMatrix4x3DeepCopy(DeepCopyHelper, unittest.TestCase):
class QMatrix4x4DeepCopy(DeepCopyHelper, unittest.TestCase):
def setUp(self):
self.original = QMatrix4x4([1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16])
+"""
if __name__ == '__main__':
unittest.main()