summaryrefslogtreecommitdiffstats
path: root/tests/auto/qtipc
Commit message (Collapse)AuthorAgeFilesLines
* Symbian shared memory could not be distinguished by numeric keymread2010-10-221-0/+33
| | | | | | | | | | | | | Fixes a problem where QSharedMemory objects on Symbian could not be distinguished by numeric keys, or keys that differed in any non-alpha way. This is fixed by using the same native key generation system as on other platforms, where a SHA1 hash of the original key is appended to a version of the key with all non-alpha characters stripped. Task-number: QT-3712 Reviewed-by: Shane Kearns
* Align .pro with qmake: s/\.sources/.files/.Miikka Heikkinen2010-10-082-5/+5
| | | | | | | | | | Complement previous commit by aligning Qt itself to use .files consistently for DEPLOYMENT as well as INSTALLS. This excludes changes to webkit. Task-number: QTBUG-3216 Reviewed-by: axis
* Merge remote branch 'origin/4.7' into qt-master-from-4.7Thiago Macieira2010-07-011-1/+1
|\ | | | | | | | | | | | | | | | | Conflicts: bin/syncqt src/gui/text/qtextlayout.cpp tools/assistant/tools/assistant/helpviewer_qwv.cpp tools/assistant/tools/assistant/helpviewer_qwv.h tools/configure/configureapp.cpp
| * Various fixes to autotests when using the symbian/linux-armcc mkspec.axis2010-06-291-1/+1
| |
| * Make test work with shadow builds again.Andreas Aardal Hanssen2010-05-261-4/+4
| | | | | | | | | | | | | | | | Broken by 0cdf33e9acb00b8f3654e8268253a3fb7c5db92c, which assumes the binary and sources are in the same directory. The fix reverts the code back to how it was in 4.5 (where it still works with shadow builds). Reviewed-by: Denis Dzyubenko
* | Added native key support to QSharedMemory API.Mirko Damiani2010-05-261-7/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Methods setNativeKey() and nativeKey() were added to QSharedMemory API. Shared memory's native key is returned by nativeKey() and it is set with either setKey() or setNativeKey(). setKey() leads to a native key that is platform independent while setNativeKey() directly sets the native key without any mangling. When using setNativeKey(), key() returns a null string and shared memory's system semaphore is not set. This means that is up to the user to define a such protection mechanism (i.e. lock() can't be used on native keys). QSharedMemory tests were updated. Merge-request: 1497 Reviewed-by: Benjamin Poulain <benjamin.poulain@nokia.com> Reviewed-by: Andreas Aardal Hanssen <andreas.aardal.hanssen@nokia.com>
* | Make test work with shadow builds again.Andreas Aardal Hanssen2010-05-261-4/+4
|/ | | | | | | | Broken by 0cdf33e9acb00b8f3654e8268253a3fb7c5db92c, which assumes the binary and sources are in the same directory. The fix reverts the code back to how it was in 4.5 (where it still works with shadow builds). Reviewed-by: Denis Dzyubenko
* tst_QSystemSemaphore::processes fixed for WinCEJoerg Bornemann2010-04-211-0/+13
| | | | | | | We can't start the same executable twice on Windows CE. This tests creates copies of lackey.exe now. Reviewed-by: mauricek
* tst_qsystemsemaphore: fix deployment of lackey.exe for WinCEJoerg Bornemann2010-04-212-13/+16
| | | | | | Bonus: typo fixed. Reviewed-by: mauricek
* tst_qsharedmemory: create multiple instances of lackey.exe on WinCEJoerg Bornemann2010-04-211-0/+12
| | | | | | | We can't start multiple instances of an executable on Windows CE. To work around, this test now creates several copies of lackey.exe Reviewed-by: mauricek
* tst_qsharedmemory: fix deployment of lackey.exe for WinCEJoerg Bornemann2010-04-212-4/+4
| | | | Reviewed-by: mauricek
* fix compilation of tst_sharedmemory on Windows CEJoerg Bornemann2010-04-211-1/+1
| | | | Reviewed-by: mauricek
* Fixed compile of shm/sem tests with vcproj generator.Rohan McGovern2010-02-1727-0/+2889
SUBDIRS+=../path/to/lackey from two different places means that qmake sees the lackey project twice. This breaks the vcproj generator. Make it so that lackey is only referred to once.