diff options
author | ninerider <qt-info@nokia.com> | 2009-11-13 13:35:34 (GMT) |
---|---|---|
committer | ninerider <qt-info@nokia.com> | 2009-11-13 13:35:34 (GMT) |
commit | 520ef13479e42b3eb1af96104fdad831905c53c2 (patch) | |
tree | ccabbff0c9a87aae43c722de577f363212120a4e | |
parent | 0c6255485dd2c59bfbb307583f2efe4dec8605cf (diff) | |
download | Qt-520ef13479e42b3eb1af96104fdad831905c53c2.zip Qt-520ef13479e42b3eb1af96104fdad831905c53c2.tar.gz Qt-520ef13479e42b3eb1af96104fdad831905c53c2.tar.bz2 |
ChangeWindowTitle skipped for Windows CE
Test fails on Windows CE due to QWorkspace state handling.
As this class is obsolete, skipping this test resonable.
The problem is added to the watch list for Windows CE in case
it reappears.
Reviewed-by: Joerg
-rw-r--r-- | tests/auto/qworkspace/tst_qworkspace.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/qworkspace/tst_qworkspace.cpp b/tests/auto/qworkspace/tst_qworkspace.cpp index c1fe3e0..35f8a4d 100644 --- a/tests/auto/qworkspace/tst_qworkspace.cpp +++ b/tests/auto/qworkspace/tst_qworkspace.cpp @@ -426,6 +426,9 @@ void tst_QWorkspace::showWindows() void tst_QWorkspace::changeWindowTitle() { +#ifdef Q_OS_WINCE + QSKIP( "Test fails on Windows CE due to QWorkspace state handling", SkipAll); +#endif const QString mwc( "MainWindow's Caption" ); const QString mwc2( "MainWindow's New Caption" ); const QString wc( "Widget's Caption" ); |