From c07a9fe847f536d1090c6876ed516baa8607b786 Mon Sep 17 00:00:00 2001 From: Kent Hansen Date: Wed, 8 Aug 2012 10:24:25 +0200 Subject: Move test helper function to separate header file Makes it possible to use the collectGarbage_helper function in other autotests too (e.g., tst_qscriptextqobject). Change-Id: I4fefa36aba13ebf9f931f0e2b90d7ddbc0036a6c Reviewed-by: Olivier Goffart --- tests/auto/qscriptengine/tst_qscriptengine.cpp | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) (limited to 'tests/auto/qscriptengine/tst_qscriptengine.cpp') 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 +#include "../shared/util.h" + Q_DECLARE_METATYPE(QList) 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 -- cgit v1.2.1