aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlmin/tst_qmlmin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qmlmin/tst_qmlmin.cpp')
-rw-r--r--tests/auto/qml/qmlmin/tst_qmlmin.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/auto/qml/qmlmin/tst_qmlmin.cpp b/tests/auto/qml/qmlmin/tst_qmlmin.cpp
index 3be7919404..6f0b2e45a2 100644
--- a/tests/auto/qml/qmlmin/tst_qmlmin.cpp
+++ b/tests/auto/qml/qmlmin/tst_qmlmin.cpp
@@ -158,6 +158,10 @@ with a lower case letter.
void tst_qmlmin::qmlMinify_data()
{
+#if defined(QTEST_CROSS_COMPILED)
+ return;
+#endif
+
QTest::addColumn<QString>("file");
QString examples = QLatin1String(SRCDIR) + "/../../../../examples/";
@@ -173,11 +177,10 @@ void tst_qmlmin::qmlMinify_data()
void tst_qmlmin::qmlMinify()
{
- QFETCH(QString, file);
-
#if defined(QTEST_CROSS_COMPILED)
QSKIP("sources not available when cross compiled");
#endif
+ QFETCH(QString, file);
QProcess qmlminify;
qmlminify.start(qmlminPath, QStringList() << QLatin1String("--verify-only") << file);