summaryrefslogtreecommitdiffstats
path: root/tests/auto/network.pro
Commit message (Collapse)AuthorAgeFilesLines
* tests: make tests compile or disable those which don't compileSergio Ahumada2011-12-071-0/+6
| | | | | | | | | These changes are mostly a backport from qtbase and a fix to those tests that are dependent on private APIs. Change-Id: I6e647583d7aaddf525d719c3b61f59a0c9aedf74 Reviewed-by: Rohan McGovern Reviewed-by: Friedemann Kleint
* Move some network tests from gui.pro to network.proShane Kearns2011-03-091-0/+5
| | | | | | | | | | | These network tests have no dependency on the QtGui dll, so I have moved them to the network autotest group. In some cases this was not stated in the tests' .pro files. The gui autotest group still has a network test (qtcpsocket), but this has a dependency on QtGui for one test case (which uses QMessageBox) Reviewed-by: Markus Goetz
* Merge branch 'symbian-socket-engine' of ↵Shane Kearns2011-03-081-2/+2
|\ | | | | | | | | | | | | | | scm.dev.troll.no:qt/qt-symbian-network into symbian-socket-engine Conflicts: src/network/access/qnetworkaccessmanager.cpp tests/auto/qsslsocket/tst_qsslsocket.cpp
| * Merge remote branch 'qt/master' into symbian-socket-engineShane Kearns2011-02-071-0/+1
| |\ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/network/access/qnetworkaccessmanager.cpp src/network/bearer/qnetworksession.cpp src/network/kernel/qnetworkproxy_symbian.cpp src/network/socket/qnativesocketengine_unix.cpp tests/auto/platformsocketengine/tst_platformsocketengine.cpp
| * | Make tst_platformsocketengine workMarkus Goetz2010-12-091-2/+2
| | | | | | | | | | | | | | | | | | Compile and instanciate the right engine. Reviewed-by: Shane Kearns
* | | SSL backend: loat root certificates on demand on Unix (excluding Mac)Peter Hartmann2011-02-231-0/+2
| |/ |/| | | | | | | | | | | | | | | | | Previously, on initializing the first QSslSocket, we read all root certificates into memory (~ 150 files). Now, we tell OpenSSL where to find the root certificates, so that they can be loaded on demand (if supported, see 'man c_rehash' for details). Reviewed-by: Markus Goetz Task-number: QTBUG-14016
* | various fixes to deal with CI gate failuresJeremy Katz2011-01-141-0/+1
|/
* Merge remote branch 'origin/4.6' into 4.7-from-4.6Rohan McGovern2010-07-171-1/+1
|\ | | | | | | | | Conflicts: tests/auto/network.pro
| * Fixed some network tests never being run.Rohan McGovern2010-07-161-1/+1
| | | | | | | | | | | | This logic for private_tests was the opposite of what it should be, meaning that network tests which use Q_AUTOTEST_EXPORTs have not been run for some time :-(
* | Fixed tst_maketestselftest::tests_pro_files failureRohan McGovern2010-07-151-0/+2
| | | | | | | | Add qauthenticator to tests/auto/network.pro
* | Merge remote branch 'origin/4.7' into oslo-staging-1Aaron McCarthy2010-03-221-1/+1
|\ \ | | | | | | | | | | | | Conflicts: tests/auto/qgl_threads/qgl_threads.pro
| * | Fixed inconsistent test naming.Rohan McGovern2010-03-221-1/+1
| | | | | | | | | | | | TARGET and test class name should always match.
* | | Rename networkAccess property to networkAccessible.Aaron McCarthy2010-03-191-0/+1
|/ / | | | | | | Add unit test and update docs.
* | Added missing tests to tests/auto/*.proRohan McGovern2010-03-071-0/+3
|/
* Move tests into separate .pro files, based on Qt module.Rohan McGovern2010-03-031-0/+40
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.