summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlivier Goffart <olivier.goffart@nokia.com>2010-07-26 08:50:26 (GMT)
committerOlivier Goffart <olivier.goffart@nokia.com>2010-07-26 08:50:26 (GMT)
commit5878a161e8a4b332fc056874aee4833352dedaa9 (patch)
tree20d2100d8eb952e1597333be895e647f069867da
parent32fe76c36a9cb0ec5121e43e78032b862d5286f3 (diff)
downloadQt-5878a161e8a4b332fc056874aee4833352dedaa9.zip
Qt-5878a161e8a4b332fc056874aee4833352dedaa9.tar.gz
Qt-5878a161e8a4b332fc056874aee4833352dedaa9.tar.bz2
Skip tst_QLineEdit::QTBUG697_paletteCurrentColorGroup on non-x11
-rw-r--r--tests/auto/qlineedit/tst_qlineedit.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/qlineedit/tst_qlineedit.cpp b/tests/auto/qlineedit/tst_qlineedit.cpp
index 8951130..717b32d 100644
--- a/tests/auto/qlineedit/tst_qlineedit.cpp
+++ b/tests/auto/qlineedit/tst_qlineedit.cpp
@@ -3716,6 +3716,9 @@ void tst_QLineEdit::taskQTBUG_7395_readOnlyShortcut()
void tst_QLineEdit::QTBUG697_paletteCurrentColorGroup()
{
+#ifndef Q_WS_X11
+ QSKIP("Only tested on X11", SkipAll);
+#endif
QLineEdit le;
le.setText(" ");
QPalette p = le.palette();