aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@nokia.com>2012-04-25 12:48:27 +0200
committerRobert Löhning <robert.loehning@nokia.com>2012-04-25 14:28:42 +0200
commitc15b727345f0b48768a9450d3e957b8039b4cf1d (patch)
treed7c354a53bc2ce86c18ae969c27b17eaf0c4b2b7 /tests
parent6595e1d443a793d67a33ad10dddbebf15f149c7f (diff)
Squish: Added workaround for Qt 4.8.1
Change-Id: I6f0c3a1549e127dad9dc7278c72dcfc782f86309 Reviewed-by: Christian Stenger <christian.stenger@nokia.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/system/suite_general/tst_select_all/test.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/system/suite_general/tst_select_all/test.py b/tests/system/suite_general/tst_select_all/test.py
index f3e6851312..be6ddf92ab 100644
--- a/tests/system/suite_general/tst_select_all/test.py
+++ b/tests/system/suite_general/tst_select_all/test.py
@@ -43,6 +43,9 @@ def main():
pos = size
if key == "<Left>":
pos -= 1
+ if platform.system() != 'Darwin' and JIRA.isBugStillOpen(7215, JIRA.Bug.CREATOR):
+ test.warning("Using workaround for %s-%d" % (JIRA.Bug.CREATOR, 7215))
+ pos = 0
test.compare(editor.textCursor().selectionStart(), pos)
test.compare(editor.textCursor().selectionEnd(), pos)
test.compare(editor.textCursor().position(), pos)