diff options
author | Olivier Goffart <olivier.goffart@nokia.com> | 2010-07-26 08:50:26 (GMT) |
---|---|---|
committer | Olivier Goffart <olivier.goffart@nokia.com> | 2010-07-26 08:50:26 (GMT) |
commit | 5878a161e8a4b332fc056874aee4833352dedaa9 (patch) | |
tree | 20d2100d8eb952e1597333be895e647f069867da /tests/auto/qlineedit | |
parent | 32fe76c36a9cb0ec5121e43e78032b862d5286f3 (diff) | |
download | Qt-5878a161e8a4b332fc056874aee4833352dedaa9.zip Qt-5878a161e8a4b332fc056874aee4833352dedaa9.tar.gz Qt-5878a161e8a4b332fc056874aee4833352dedaa9.tar.bz2 |
Skip tst_QLineEdit::QTBUG697_paletteCurrentColorGroup on non-x11
Diffstat (limited to 'tests/auto/qlineedit')
-rw-r--r-- | tests/auto/qlineedit/tst_qlineedit.cpp | 3 |
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(); |