summaryrefslogtreecommitdiffstats
path: root/tests/auto/other.pro
Commit message (Collapse)AuthorAgeFilesLines
* If accessibility isn't built, don't try to test itJason McDonald2011-04-191-1/+2
| | | | | | | | Only build the autotest when the feature to be tested is in the Qt build. This is better than building and running an empty test. Change-Id: I67721f5f48296afcca64f761d12325f8e040f2d8 Reviewed-by: Rohan McGovern
* Don't try to run exceptionsafety_objects test by default on windows.Jason McDonald2011-04-181-1/+2
| | | | | | | | This test relies on some API specific to MSVC's debug runtime, which is not always guaranteed to be available. Change-Id: Ib0ae4694ad51f59198dadfce802f0dfdf0522002 Reviewed-by: Rohan McGovern
* Make tst_exceptionsafety_objects part of the test set.Jason McDonald2011-04-151-1/+1
| | | | | | | | Re-enable this test, with the two test functions that fail on Linux disabled until the failures can be diagnosed. Change-Id: I915e1a0d675cb71a80086e89f9799a4f9f6b600c Reviewed-by: Rohan McGovern
* Merge remote-tracking branch 'origin/4.7' into qt-master-from-4.7Thiago Macieira2011-03-111-1/+2
|\ | | | | | | | | | | | | Conflicts: mkspecs/common/symbian/symbian.conf src/s60installs/bwins/QtGuiu.def src/s60installs/eabi/QtGuiu.def
| * Added native image handle provider support in pixmaps on openvg.Laszlo Agocs2011-03-081-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | QNativeImageHandleProvider is a thin interface consisting of get() and release() functions. Pixmaps constructed with such a provider will call these functions to acquire and release a native handle, e.g. a CFbsBitmap or RSgImage pointer in case of Symbian. The behavior is largely similar to constructing pixmaps via fromSymbianCFbsBitmap or fromSymbianRSgImage, with the exception of pixmap hibernation: release() (and subsequently get()) is guaranteed to be called also in case of hibernation, allowing more fine-grained tracking of the usage and lifetime of image data. Task-number: QT-4632 Reviewed-by: Jani Hautakangas
* | Satisfy the maketestselftest autotstaavit2010-12-151-0/+1
| |
* | First shot at a new client-server based autotest of the Arthuraavit2010-08-251-0/+1
|/ | | | | 2D rendering system, based on the lance test tool. Hence dubbed lancelot.
* Mac: new auto test: macnativeeventsRichard Moe Gustavsen2010-03-241-0/+1
| | | | | | | | | | | This test will utilize the new API I wrote back in the days for posting/listening for native mouse and keyboard events on mac. By being able to create low-level native events that you can post to the window server, we can write tests that not only test the widgets layer of Qt, but also the platform dependent code that translates native events into Qt events. Reviewed-by: msorvig
* Move tests into separate .pro files, based on Qt module.Rohan McGovern2010-03-031-0/+58
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.