summaryrefslogtreecommitdiff
path: root/tests/auto/qscriptenginedebugger/tst_qscriptenginedebugger.cpp
diff options
context:
space:
mode:
authorJason McDonald <jason.mcdonald@nokia.com>2011-10-19 14:29:03 +1000
committerQt by Nokia <qt-info@nokia.com>2011-10-21 09:49:26 +0200
commit62c9050dbe9313dfe090839b4ececf6608d49143 (patch)
treeaa868d1447edc45f2e6eb4e288c3690bed995ab7 /tests/auto/qscriptenginedebugger/tst_qscriptenginedebugger.cpp
parentdd760b017a561b4c5a005c9b2f4e737debeb65a3 (diff)
downloadqtscript-62c9050dbe9313dfe090839b4ececf6608d49143.tar.gz
Remove SkipMode parameter from QSKIP.
The SkipMode parameter has been removed from the API in qtbase, so it must be in all calls to QSKIP. Task-number: QTBUG-21851, QTBUG-21652 Change-Id: I8579b648437eaa9d4c81deb7ed581d88af11d5b5 Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
Diffstat (limited to 'tests/auto/qscriptenginedebugger/tst_qscriptenginedebugger.cpp')
-rw-r--r--tests/auto/qscriptenginedebugger/tst_qscriptenginedebugger.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/auto/qscriptenginedebugger/tst_qscriptenginedebugger.cpp b/tests/auto/qscriptenginedebugger/tst_qscriptenginedebugger.cpp
index a3f3d1c..32be18d 100644
--- a/tests/auto/qscriptenginedebugger/tst_qscriptenginedebugger.cpp
+++ b/tests/auto/qscriptenginedebugger/tst_qscriptenginedebugger.cpp
@@ -98,7 +98,7 @@ tst_QScriptEngineDebugger::~tst_QScriptEngineDebugger()
void tst_QScriptEngineDebugger::attachAndDetach()
{
#if defined(Q_OS_WINCE) && _WIN32_WCE < 0x600
- QSKIP("skipped due to high mem usage until task 261062 is fixed", SkipAll);
+ QSKIP("skipped due to high mem usage until task 261062 is fixed");
#endif
{
QScriptEngineDebugger debugger;
@@ -165,7 +165,7 @@ void tst_QScriptEngineDebugger::attachAndDetach()
void tst_QScriptEngineDebugger::action()
{
#if defined(Q_OS_WINCE) && _WIN32_WCE < 0x600
- QSKIP("skipped due to high mem usage until task 261062 is fixed", SkipAll);
+ QSKIP("skipped due to high mem usage until task 261062 is fixed");
#endif
QScriptEngine engine;
@@ -203,7 +203,7 @@ void tst_QScriptEngineDebugger::action()
void tst_QScriptEngineDebugger::widget()
{
#if defined(Q_OS_WINCE) && _WIN32_WCE < 0x600
- QSKIP("skipped due to high mem usage until task 261062 is fixed", SkipAll);
+ QSKIP("skipped due to high mem usage until task 261062 is fixed");
#endif
QScriptEngine engine;
@@ -235,7 +235,7 @@ void tst_QScriptEngineDebugger::widget()
void tst_QScriptEngineDebugger::standardObjects()
{
#if defined(Q_OS_WINCE) && _WIN32_WCE < 0x600
- QSKIP("skipped due to high mem usage until task 261062 is fixed", SkipAll);
+ QSKIP("skipped due to high mem usage until task 261062 is fixed");
#endif
QScriptEngine engine;
@@ -264,7 +264,7 @@ void tst_QScriptEngineDebugger::standardObjects()
void tst_QScriptEngineDebugger::debuggerSignals()
{
#if defined(Q_OS_WINCE) && _WIN32_WCE < 0x600
- QSKIP("skipped due to high mem usage until task 261062 is fixed", SkipAll);
+ QSKIP("skipped due to high mem usage until task 261062 is fixed");
#endif
QScriptEngine engine;
@@ -341,7 +341,7 @@ private:
void tst_QScriptEngineDebugger::consoleCommands()
{
- QSKIP("This test can hang / misbehave because of timing/event loop issues (task 241300)", SkipAll);
+ QSKIP("This test can hang / misbehave because of timing/event loop issues (task 241300)");
QScriptEngine engine;
QScriptEngineDebugger debugger;
@@ -753,7 +753,7 @@ private:
void tst_QScriptEngineDebugger::multithreadedDebugging()
{
#ifdef Q_OS_WINCE
- QSKIP("This tests uses too much memory for Windows CE", SkipAll);
+ QSKIP("This tests uses too much memory for Windows CE");
#endif
ScriptEvaluator eval;
QThread thread;