diff options
author | Thiago Macieira <thiago.macieira@nokia.com> | 2010-07-14 15:19:27 (GMT) |
---|---|---|
committer | Thiago Macieira <thiago.macieira@nokia.com> | 2010-07-15 09:50:42 (GMT) |
commit | 01978218333aab792e32d7c69bbaea849b3b8d15 (patch) | |
tree | 6efa10477bb12f3ddd34c2dbf99b68ab699a8722 /tests/auto | |
parent | 648f8a05abac5fbf851fff18d1c34ff7c4a7a027 (diff) | |
download | Qt-01978218333aab792e32d7c69bbaea849b3b8d15.zip Qt-01978218333aab792e32d7c69bbaea849b3b8d15.tar.gz Qt-01978218333aab792e32d7c69bbaea849b3b8d15.tar.bz2 |
Autotest: reenable the NTLM proxy test on tst_QTcpSocket
Diffstat (limited to 'tests/auto')
-rw-r--r-- | tests/auto/qtcpsocket/tst_qtcpsocket.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/qtcpsocket/tst_qtcpsocket.cpp b/tests/auto/qtcpsocket/tst_qtcpsocket.cpp index 31cae40..e3b2ca5 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 } |