summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@nokia.com>2010-09-23 21:06:53 (GMT)
committerThiago Macieira <thiago.macieira@nokia.com>2010-09-28 14:00:10 (GMT)
commite7251f297bed568365dadf77e61aeb4a579a4a81 (patch)
tree9150d5dc7ef1b241ece5fca6392118b731d12d1a /tests
parentfa5c83003db5dea46fc045b2fd90e6308a0d8911 (diff)
downloadQt-e7251f297bed568365dadf77e61aeb4a579a4a81.zip
Qt-e7251f297bed568365dadf77e61aeb4a579a4a81.tar.gz
Qt-e7251f297bed568365dadf77e61aeb4a579a4a81.tar.bz2
Disable NTLM tests again, our server is not working.
We don't know how to configure Squid and Samba. If someone does, please contact us. Reviewed-By: Trust Me
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qtcpsocket/tst_qtcpsocket.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/qtcpsocket/tst_qtcpsocket.cpp b/tests/auto/qtcpsocket/tst_qtcpsocket.cpp
index e3b2ca5..31cae40 100644
--- a/tests/auto/qtcpsocket/tst_qtcpsocket.cpp
+++ b/tests/auto/qtcpsocket/tst_qtcpsocket.cpp
@@ -275,7 +275,7 @@ void tst_QTcpSocket::initTestCase_data()
QTest::newRow("WithHttpProxy") << true << int(HttpProxy) << false;
QTest::newRow("WithHttpProxyBasicAuth") << true << int(HttpProxy | AuthBasic) << false;
- QTest::newRow("WithHttpProxyNtlmAuth") << true << int(HttpProxy | AuthNtlm) << false;
+// QTest::newRow("WithHttpProxyNtlmAuth") << true << int(HttpProxy | AuthNtlm) << false;
#ifndef QT_NO_OPENSSL
QTest::newRow("WithoutProxy SSL") << false << 0 << true;
@@ -284,7 +284,7 @@ void tst_QTcpSocket::initTestCase_data()
QTest::newRow("WithHttpProxy SSL") << true << int(HttpProxy) << true;
QTest::newRow("WithHttpProxyBasicAuth SSL") << true << int(HttpProxy | AuthBasic) << true;
- QTest::newRow("WithHttpProxyNtlmAuth SSL") << true << int(HttpProxy | AuthNtlm) << true;
+// QTest::newRow("WithHttpProxyNtlmAuth SSL") << true << int(HttpProxy | AuthNtlm) << true;
#endif
}