diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2010-05-24 05:14:41 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2010-05-24 05:42:25 (GMT) |
commit | 06fbba775078def95f28139483f8645a00941fe5 (patch) | |
tree | 8fbf61caa6334c04d895031f19603498a70f5d4c /tests/auto/declarative | |
parent | 61bd72461b2f02bdcd316b32de7749eca8692212 (diff) | |
download | Qt-06fbba775078def95f28139483f8645a00941fe5.zip Qt-06fbba775078def95f28139483f8645a00941fe5.tar.gz Qt-06fbba775078def95f28139483f8645a00941fe5.tar.bz2 |
Fix visual tests after rename of the qml executable.
Diffstat (limited to 'tests/auto/declarative')
-rw-r--r-- | tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp b/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp index f105692..71dc451 100644 --- a/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp +++ b/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp @@ -81,11 +81,11 @@ QString tst_qmlvisual::viewer() QString qmlruntime; #if defined(Q_WS_MAC) - qmlruntime = QDir(binaries).absoluteFilePath("qml.app/Contents/MacOS/qml"); + qmlruntime = QDir(binaries).absoluteFilePath("QMLViewer.app/Contents/MacOS/QMLViewer"); #elif defined(Q_WS_WIN) || defined(Q_WS_S60) - qmlruntime = QDir(binaries).absoluteFilePath("qml.exe"); + qmlruntime = QDir(binaries).absoluteFilePath("qmlviewer.exe"); #else - qmlruntime = QDir(binaries).absoluteFilePath("qml"); + qmlruntime = QDir(binaries).absoluteFilePath("qmlviewer"); #endif return qmlruntime; |