summaryrefslogtreecommitdiffstats
path: root/tests/auto/qscriptengine
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@trolltech.com>2009-08-25 07:45:20 (GMT)
committerOlivier Goffart <ogoffart@trolltech.com>2009-08-25 08:36:35 (GMT)
commita5a215eefff176eda3b1bb97ee70abfbab20f054 (patch)
tree2a66bc6d4727aa31217a975383191ed67abc9f1f /tests/auto/qscriptengine
parent5e43eb85043395655155edb5206de15024e3fb71 (diff)
downloadQt-a5a215eefff176eda3b1bb97ee70abfbab20f054.zip
Qt-a5a215eefff176eda3b1bb97ee70abfbab20f054.tar.gz
Qt-a5a215eefff176eda3b1bb97ee70abfbab20f054.tar.bz2
Memory leak in QScriptEngineAgent.
The documentation of the agent constructor specify that the agant is owned by the engine. Even if the agent is not set to the engine Reviewed-by: Kent Hansen
Diffstat (limited to 'tests/auto/qscriptengine')
-rw-r--r--tests/auto/qscriptengine/tst_qscriptengine.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/auto/qscriptengine/tst_qscriptengine.cpp b/tests/auto/qscriptengine/tst_qscriptengine.cpp
index 0c67987..df74144 100644
--- a/tests/auto/qscriptengine/tst_qscriptengine.cpp
+++ b/tests/auto/qscriptengine/tst_qscriptengine.cpp
@@ -3913,6 +3913,7 @@ void tst_QScriptEngine::getSetAgent()
TestAgent *agent = new TestAgent(&eng);
QTest::ignoreMessage(QtWarningMsg, "QScriptEngine::setAgent(): cannot set agent belonging to different engine");
eng2.setAgent(agent);
+ QCOMPARE(eng2.agent(), (QScriptEngineAgent*)0);
}
}