Skip unstable tests
We can't test GC reliably due to our GC being conservative currently. Once we moved over to an exact GC, we can re-enable the test. Change-Id: I6778ed9bee3b41372705f6b41c1379d224335e53 Reviewed-by: Gunnar Sletta <gunnar.sletta@digia.com> Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
This commit is contained in:
parent
2f4522d72e
commit
382709e14d
|
@ -452,6 +452,7 @@ void tst_QJSEngine::newQObject()
|
|||
|
||||
void tst_QJSEngine::newQObject_ownership()
|
||||
{
|
||||
QSKIP("unreliable test due to our conservative GC");
|
||||
QJSEngine eng;
|
||||
{
|
||||
QPointer<QObject> ptr = new QObject();
|
||||
|
@ -1240,6 +1241,7 @@ void tst_QJSEngine::castWithMultipleInheritance()
|
|||
|
||||
void tst_QJSEngine::collectGarbage()
|
||||
{
|
||||
QSKIP("This test is not reliable due to our conservative GC");
|
||||
QJSEngine eng;
|
||||
eng.evaluate("a = new Object(); a = new Object(); a = new Object()");
|
||||
QJSValue a = eng.newObject();
|
||||
|
|
Loading…
Reference in New Issue