diff options
author | Warwick Allison <warwick.allison@nokia.com> | 2009-10-07 01:18:22 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2009-10-07 01:18:22 (GMT) |
commit | e1452cfc79a1fed77e646427092e181b7eb2ca2f (patch) | |
tree | 518a79bf19f78e202ef3343ddc209aef240d7b90 /tests/auto/declarative/visual/tst_visual.cpp | |
parent | ba31a86ef17fc0c19887930c68ee30d71eefc4b3 (diff) | |
download | Qt-e1452cfc79a1fed77e646427092e181b7eb2ca2f.zip Qt-e1452cfc79a1fed77e646427092e181b7eb2ca2f.tar.gz Qt-e1452cfc79a1fed77e646427092e181b7eb2ca2f.tar.bz2 |
Fix portability of visual tests: fix filenames to be relative to base (URL).
Still not font-portable.
Diffstat (limited to 'tests/auto/declarative/visual/tst_visual.cpp')
-rw-r--r-- | tests/auto/declarative/visual/tst_visual.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/auto/declarative/visual/tst_visual.cpp b/tests/auto/declarative/visual/tst_visual.cpp index 458b96e..d95fa5b 100644 --- a/tests/auto/declarative/visual/tst_visual.cpp +++ b/tests/auto/declarative/visual/tst_visual.cpp @@ -78,6 +78,8 @@ void tst_visual::visual() QProcess p; p.start(qmlviewer, arguments); QVERIFY(p.waitForFinished()); + if (p.exitCode() != 0) + qDebug() << p.readAllStandardError(); QCOMPARE(p.exitStatus(), QProcess::NormalExit); QCOMPARE(p.exitCode(), 0); } |