summaryrefslogtreecommitdiffstats
path: root/tests/auto/qscriptenginedebugger/tst_qscriptenginedebugger.cpp
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@trolltech.com>2009-08-17 17:34:53 +0200
committerJoerg Bornemann <joerg.bornemann@trolltech.com>2009-08-17 17:35:45 +0200
commit9a2ccb7060da6c66b36d74cb9f550eb04b7fa5e6 (patch)
tree48b2b6c3481fd05395b0b7b828a2b4fe7f6ec9c8 /tests/auto/qscriptenginedebugger/tst_qscriptenginedebugger.cpp
parentd8ddf49c5ba7b45ad90e6ca99eda1d150fd37027 (diff)
skip tst_QScriptEngineDebugger::multithreadedDebugging on Windows CE
We run out of memory on the test system in this test. Reviewed-by: mauricek
Diffstat (limited to 'tests/auto/qscriptenginedebugger/tst_qscriptenginedebugger.cpp')
-rw-r--r--tests/auto/qscriptenginedebugger/tst_qscriptenginedebugger.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/qscriptenginedebugger/tst_qscriptenginedebugger.cpp b/tests/auto/qscriptenginedebugger/tst_qscriptenginedebugger.cpp
index 52216b061e..71cbbcf754 100644
--- a/tests/auto/qscriptenginedebugger/tst_qscriptenginedebugger.cpp
+++ b/tests/auto/qscriptenginedebugger/tst_qscriptenginedebugger.cpp
@@ -723,6 +723,9 @@ private:
void tst_QScriptEngineDebugger::multithreadedDebugging()
{
+#ifdef Q_OS_WINCE
+ QSKIP("This tests uses too much memory for Windows CE", SkipAll);
+#endif
ScriptEvaluator eval;
QThread thread;
eval.moveToThread(&thread);