summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2016-11-08 14:43:30 +0100
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2016-11-08 13:54:30 +0000
commiteeb08ff6408f803ae0eeb70bf3aa075157f12cb2 (patch)
tree365671eeb4a75a81dded1b573f0ca0b06aea4945 /tests
parentb03bd9cdd66e9dddcfdf62957fb93997a34d756f (diff)
tst_windeployqt: Add --no-angle
Deploy without ANGLE until renaming has settled. Task-number: QTBUG-56992 Change-Id: I94306869ac67849cc9068ec7ea5939866bdb6cdd Reviewed-by: Jan Arve Sæther <jan-arve.saether@qt.io> Reviewed-by: Oliver Wolff <oliver.wolff@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/windeployqt/tst_windeployqt.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/auto/windeployqt/tst_windeployqt.cpp b/tests/auto/windeployqt/tst_windeployqt.cpp
index dfabfc8fc..b9d30a50b 100644
--- a/tests/auto/windeployqt/tst_windeployqt.cpp
+++ b/tests/auto/windeployqt/tst_windeployqt.cpp
@@ -155,7 +155,8 @@ void tst_windeployqt::deploy()
QString errorMessage;
// Deploy application
QStringList deployArguments;
- deployArguments << QLatin1String("--no-translations") << QDir::toNativeSeparators(m_testAppBinary);
+ deployArguments << QLatin1String("--no-translations") << QLatin1String("--no-angle")
+ << QDir::toNativeSeparators(m_testAppBinary);
QVERIFY2(runProcess(m_windeployqtBinary, deployArguments, &errorMessage, QString(), QProcessEnvironment(), 20000),
qPrintable(errorMessage));