From: Miikka Heikkinen Date: Wed, 14 Mar 2012 14:56:22 +0000 (+0200) Subject: Remove warning about missing file from parserstress test X-Git-Tag: qt-v5.0.0-alpha1~126 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8f077f28c51c24e71d95c4e99d322734578d9c9c;p=profile%2Fivi%2Fqtdeclarative.git Remove warning about missing file from parserstress test There is no dummy.qml, so trying to find it will cause a warning and return an empty string. Since the url is optional anyway and apparently not relevant to this test, just use empty QUrl directly. Change-Id: I11ba742dedccd6bdea226f680aa57c957afc7dc7 Reviewed-by: Friedemann Kleint --- diff --git a/tests/auto/qml/parserstress/tst_parserstress.cpp b/tests/auto/qml/parserstress/tst_parserstress.cpp index a179a24..eb477af 100644 --- a/tests/auto/qml/parserstress/tst_parserstress.cpp +++ b/tests/auto/qml/parserstress/tst_parserstress.cpp @@ -128,8 +128,7 @@ void tst_parserstress::ecmascript() QQmlComponent component(&engine); - QString dummyFile = QFINDTESTDATA("dummy.qml"); - component.setData(qmlData, QUrl::fromLocalFile(dummyFile)); + component.setData(qmlData, QUrl()); QFileInfo info(file);