summaryrefslogtreecommitdiffstats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* Update obsolete contact address.Jason McDonald2012-01-2056-56/+56
| | | | | | | | Replace Nokia contact email address with Qt Project website. Change-Id: I1c6ba5c87f0eca30b6f01f4245a032262d30f8ce Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
* Update copyright year in Nokia copyright headers.Jason McDonald2012-01-1123-23/+23
| | | | | | | | Update copyright headers from before 2011. Change-Id: Ic34da6aa9bf8ba63d4e41c2135b4fdaf7c437360 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
* Update copyright year in license headers.Jason McDonald2012-01-0533-33/+33
| | | | | | Change-Id: I76920b22a5b386a0f85ec28076da20505c022b6f Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
* Fixed compile on Windows in release mode.Rohan McGovern2012-01-041-1/+1
| | | | | | | | | | | | | It is not valid to unconditionally enable debug mode on platforms where debug/release affects linkage. On these platforms, debug mode can only be used if the debug libraries are enabled, and release mode can only be used if the release libraries are enabled. Let the build system set the correct mode. Change-Id: I95f6ddb15318a08936e49ab1140cdb95fdbd62ae Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Alex <alex.blasche@nokia.com>
* QtConnectivity: Fix test crashes/asserts/hangs.Friedemann Kleint2012-01-034-9/+6
| | | | | | | | | | | | | | | | | | - Fix crash caused by uninitialized d-ptr in local device default implementation (Windows). - Fix crash caused by uninitialized d-ptr in local device bluez implementation (Linux) if connection fails. - Verify local device validity before d-ptr is accessed in test - Fix crash in QNdefNfcUriRecord::uri() in case abbreviations[0] (==0) is accessed. - Terminate wait loops - Check signal spy before accessing first element. - Fix compiler warnings. Change-Id: I92d54b4dfcc05e8befb49f2bd72b60251641aa48 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Alex <alex.blasche@nokia.com>
* nfctestserver: Remove rpath-option.Friedemann Kleint2012-01-031-2/+0
| | | | | | | | | | It causes a warning on Windows and does not have any effect on Linux since it evaluates to qtbase/lib which is set as rpath by default. Change-Id: Ie697e393c46452680e3e3b03fe9ea9abe44b0c18 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Alex <alex.blasche@nokia.com>
* Improve QBluetoothLocalDevice autotest.Jason McDonald2011-12-071-13/+8
| | | | | | | | | Use standard QTRY_VERIFY instead of custom version, and check that signal spies are valid after construction. Change-Id: Iedb5e107d77c18dad6db0fcf46d61f030b68d7d3 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
* Remove unnecessary header file.Jason McDonald2011-12-064-106/+0
| | | | | | | | | | The removed header defines four macros: QTRY_VERIFY and QTRY_COMPARE, which are provided by testlib, and QTRY_NOOP and QTRY_VERIFY_TIMEOUT, which are not used by any test that includes the header. Change-Id: I0f92ff961de78988703089c085098f72e8c34d1f Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
* tst_qbluetoothsocket: Fix warnings about operators.Friedemann Kleint2011-11-301-7/+8
| | | | | | | | Change expression to what was most likely intended. Change-Id: Ifd1e6ef2a41cab020cfd9a3f341a74f1b169448e Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Alex <alex.blasche@nokia.com>
* QtConnectivity: Fix compilation on Windows.Friedemann Kleint2011-11-302-10/+5
| | | | | | | | | | - Fix imports - Fix includes - Remove trailing comma from enumerations (error in clang) Change-Id: I9627fe613e59accffc788def9e44a068ed02109f Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Alex <alex.blasche@nokia.com>
* added Connectivity namespaces (QtBluetooth and QtNfc)Michael Zanetti2011-11-1145-47/+108
| | | | | | Change-Id: I5f3062c857e657a6d05ab29edfa2f1b48cb173f8 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Alex <alex.blasche@nokia.com>
* Remove SkipMode parameter from QSKIP.Jason McDonald2011-11-093-5/+5
| | | | | | | | | | | The SkipMode parameter has been removed from the API in qtbase, so it must be in all calls to QSKIP. Task-number: QTBUG-21851, QTBUG-21652 Change-Id: Iae4432e57a12064b86f9a56cad73fecb56bdaaa9 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com> Reviewed-by: Alex <alex.blasche@nokia.com>
* tests: enabled all passing autotestsRohan McGovern2011-10-1818-41/+70
| | | | | | | | | | | | | | | Enabled compilation of all autotests which are able to compile. Enabled enforcing the results of all autotests which pass. Raised bugs for autotests which don't fall into the above two categories. Task-number: QTBUG-22015 Task-number: QTBUG-22016 Task-number: QTBUG-22017 Change-Id: I860a8f6e44dc6ab563ecc3f7d178f778fefa9d64 Reviewed-by: Alex <alex.blasche@nokia.com>
* Cleaned up incorrect usage of Qt modulesRohan McGovern2011-10-141-3/+1
| | | | | | | | | | | There is no Qt module named `connectivity', so don't add it to QT. nfctestserver does not use QtTest (and qtAddLibrary is not the right way to use it anyway), so remove it. Change-Id: I1902ae0684e884e267d657698fa2c6774065cf31 Reviewed-on: http://codereview.qt-project.org/6633 Reviewed-by: Alex <alex.blasche@nokia.com>
* re-added autotestsMichael Zanetti2011-10-0750-11/+6986
| | | | | | | Change-Id: Ic2be21fd11e2fdb96185fe9269cebbe08b6de87a Reviewed-on: http://codereview.qt-project.org/4783 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Alex <alex.blasche@nokia.com>
* Don't attempt to run nfctestserver as a testcase.Rohan McGovern2011-08-251-1/+1
| | | | | | | | | This is not a testcase, so don't mark it as such. Change-Id: I722f56a2f1ec7d7059fcbeb6d5313c433d4eace3 Reviewed-on: http://codereview.qt.nokia.com/3554 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Keith Isdale <keith.isdale@nokia.com>
* Initial commit.Michael Zanetti2011-08-2456-0/+8856
From qt5connectivity.tar.gz, md5 317c149d6f8c07d09632353188582834