diff options
author | Friedemann Kleint <Friedemann.Kleint@nokia.com> | 2012-05-31 10:09:41 (GMT) |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2012-06-19 07:33:51 (GMT) |
commit | b1d6a93e4b0398a573add4a1eb0b6b924cc804bc (patch) | |
tree | b68e17754a603b0f2477f5b3132bf3326831c6ad /tests/auto/qapplication/test | |
parent | b6505dcee680ec6894c3e08e954e970dc4a3b965 (diff) | |
download | Qt-b1d6a93e4b0398a573add4a1eb0b6b924cc804bc.zip Qt-b1d6a93e4b0398a573add4a1eb0b6b924cc804bc.tar.gz Qt-b1d6a93e4b0398a573add4a1eb0b6b924cc804bc.tar.bz2 |
Fix QApplication test for desktop.
- Set the working directory such that the binaries are found:
Mac: disable app-bundle
Windows: cd up if we are in a debug, release folder
- Suppress the debug/release folder for the wincmdline process,
make it a simple console app.
- Print proper message if process launch fails.
- Restrict insignification to qws/embedded due to an
exit crash. Expect-fail focus test on Mac.
Task-number: QTQAINFRA-428
Change-Id: I3aaa9c5faf97557717eaa84d343e5cb59f6a53e2
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
Diffstat (limited to 'tests/auto/qapplication/test')
-rw-r--r-- | tests/auto/qapplication/test/test.pro | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/auto/qapplication/test/test.pro b/tests/auto/qapplication/test/test.pro index 6452369..ec19b70 100644 --- a/tests/auto/qapplication/test/test.pro +++ b/tests/auto/qapplication/test/test.pro @@ -2,6 +2,7 @@ CONFIG += testcase TARGET = ../tst_qapplication QT += testlib +CONFIG -= app-bundle SOURCES += ../tst_qapplication.cpp wince* { @@ -30,4 +31,4 @@ win32 { } } -CONFIG+=insignificant_test # QTQAINFRA-428 +embedded:CONFIG+=insignificant_test # QTQAINFRA-428 |