summaryrefslogtreecommitdiffstats
path: root/tests/auto/other.pro
Commit message (Collapse)AuthorAgeFilesLines
* 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-041-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.