diff options
author | Alexis Menard <alexis.menard@nokia.com> | 2009-10-14 11:32:27 (GMT) |
---|---|---|
committer | Alexis Menard <alexis.menard@nokia.com> | 2009-10-14 11:33:42 (GMT) |
commit | 9b9e8ece43cf50a295a2a41f161be4231605e0b5 (patch) | |
tree | 7bf3106489d38de05146e41c5895138df1562a67 /tests/auto/qfiledialog2/qfiledialog2.pro | |
parent | 0c67ec35972d5e4b7e4807c7652cc4e97c4e33be (diff) | |
download | Qt-9b9e8ece43cf50a295a2a41f161be4231605e0b5.zip Qt-9b9e8ece43cf50a295a2a41f161be4231605e0b5.tar.gz Qt-9b9e8ece43cf50a295a2a41f161be4231605e0b5.tar.bz2 |
Split QFileDialog auto-tests in two separate dirs. This will allow slow
machines to complete those tests before being killed by pulse.
Reviewed-by:TrustMe
Diffstat (limited to 'tests/auto/qfiledialog2/qfiledialog2.pro')
-rw-r--r-- | tests/auto/qfiledialog2/qfiledialog2.pro | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/auto/qfiledialog2/qfiledialog2.pro b/tests/auto/qfiledialog2/qfiledialog2.pro new file mode 100644 index 0000000..4ebf977 --- /dev/null +++ b/tests/auto/qfiledialog2/qfiledialog2.pro @@ -0,0 +1,27 @@ +############################################################ +# Project file for autotest for file qfiledialog.h +############################################################ + +load(qttest_p4) + +SOURCES += tst_qfiledialog2.cpp + +wince*|symbian { + addFiles.sources = *.cpp + addFiles.path = . + filesInDir.sources = *.pro + filesInDir.path = someDir + DEPLOYMENT += addFiles filesInDir +} + +symbian:TARGET.EPOCHEAPSIZE="0x100 0x1000000" +symbian:HEADERS += ../../../include/qtgui/private/qfileinfogatherer_p.h + +wince* { + DEFINES += SRCDIR=\\\"./\\\" +} else:symbian { + TARGET.UID3 = 0xE0340003 + DEFINES += SYMBIAN_SRCDIR_UID=$$lower($$replace(TARGET.UID3,"0x","")) +} else { + DEFINES += SRCDIR=\\\"$$PWD/\\\" +} |