diff options
author | Rohan McGovern <rohan.mcgovern@nokia.com> | 2010-03-03 22:22:27 (GMT) |
---|---|---|
committer | Rohan McGovern <rohan.mcgovern@nokia.com> | 2010-03-03 23:20:01 (GMT) |
commit | 9e5cc0da3cdcf3ddddc35dc78e670994237a180f (patch) | |
tree | 7a1ac34b5e1a276e3c97950b0980247a3def0147 /tests/auto/other.pro | |
parent | 0489ba37346e4f8efc4a7c1661a60905dc4aa423 (diff) | |
download | Qt-9e5cc0da3cdcf3ddddc35dc78e670994237a180f.zip Qt-9e5cc0da3cdcf3ddddc35dc78e670994237a180f.tar.gz Qt-9e5cc0da3cdcf3ddddc35dc78e670994237a180f.tar.bz2 |
Move tests into separate .pro files, based on Qt module.
Having the tests in separate projects allows for some optimization
strategies when running the tests (e.g. start running corelib tests
while the rest of Qt is still compiling), and allows developers to run
only a subset of tests when appropriate.
Diffstat (limited to 'tests/auto/other.pro')
-rw-r--r-- | tests/auto/other.pro | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/tests/auto/other.pro b/tests/auto/other.pro new file mode 100644 index 0000000..e220d1a --- /dev/null +++ b/tests/auto/other.pro @@ -0,0 +1,58 @@ +# These tests don't nicely fit into one of the other .pro files. +# They are testing too many Qt modules at the same time. + +TEMPLATE=subdirs +SUBDIRS=\ +# exceptionsafety_objects \ shouldn't enable it + qaccessibility \ + qalgorithms \ + qcombobox \ + qcssparser \ + qdatastream \ + qdir \ + qfocusevent \ + qimage \ + qiodevice \ + qitemmodel \ + qlayout \ + qmdiarea \ + qmenu \ + qmenubar \ + qmouseevent \ + qpainter \ + qpixmap \ + qprinter \ + qsettings \ + qsplitter \ + qtabwidget \ + qtextbrowser \ + qtextdocument \ + qtextedit \ + qtoolbutton \ + qvariant \ + qwidget \ + qworkspace \ + windowsmobile + +contains(QT_CONFIG, OdfWriter):SUBDIRS += qzip qtextodfwriter +mac: { + SUBDIRS += macgui \ + macplist \ + qaccessibility_mac +} + +embedded:!wince* { + SUBDIRS += qcopchannel \ + qdirectpainter \ + qmultiscreen +} + +symbian { + SUBDIRS += qsoftkeymanager \ + qs60mainapplication +} + +# Following tests depends on private API +!contains(QT_CONFIG, private_tests): SUBDIRS -= \ + qcssparser \ + |