diff options
Diffstat (limited to 'tests/auto/qscriptengine')
-rw-r--r-- | tests/auto/qscriptengine/qscriptengine.pro | 1 | ||||
-rw-r--r-- | tests/auto/qscriptengine/tst_qscriptengine.cpp | 17 |
2 files changed, 3 insertions, 15 deletions
diff --git a/tests/auto/qscriptengine/qscriptengine.pro b/tests/auto/qscriptengine/qscriptengine.pro index 71e04ab..adc1a46 100644 --- a/tests/auto/qscriptengine/qscriptengine.pro +++ b/tests/auto/qscriptengine/qscriptengine.pro @@ -3,6 +3,7 @@ CONFIG += testcase QT = core gui widgets script script-private testlib SOURCES += tst_qscriptengine.cpp RESOURCES += qscriptengine.qrc +include(../shared/util.pri) wince* { DEFINES += SRCDIR=\\\"./\\\" diff --git a/tests/auto/qscriptengine/tst_qscriptengine.cpp b/tests/auto/qscriptengine/tst_qscriptengine.cpp index 514d29a..3be9d62 100644 --- a/tests/auto/qscriptengine/tst_qscriptengine.cpp +++ b/tests/auto/qscriptengine/tst_qscriptengine.cpp @@ -53,6 +53,8 @@ #include <QtScript/private/qscriptdeclarativeclass_p.h> +#include "../shared/util.h" + Q_DECLARE_METATYPE(QList<int>) Q_DECLARE_METATYPE(QObjectList) Q_DECLARE_METATYPE(QScriptProgram) @@ -63,21 +65,6 @@ Q_DECLARE_METATYPE(QScriptProgram) # define SRCDIR "C:/Private/" TOSTRING(SYMBIAN_SRCDIR_UID) #endif -// The JavaScriptCore GC marks the C stack. To try to ensure that there is -// no JSObject* left in stack memory by the compiler, we call this function -// to zap some bytes of memory before calling collectGarbage(). -static void zapSomeStack() -{ - char buf[4096]; - memset(buf, 0, sizeof(buf)); -} - -static void collectGarbage_helper(QScriptEngine &eng) -{ - zapSomeStack(); - eng.collectGarbage(); -} - class tst_QScriptEngine : public QObject { Q_OBJECT |