QTcpSocket auto test: Temporarily disable Socks5 tests
... because they are too unstable. We can check whether they are more stable once the new network tests server is in place. Task-number: QTBUG-38385 Change-Id: I5ced7cc1f89290812aa88f174a41965fd2ef7252 Reviewed-by: Jędrzej Nowacki <jedrzej.nowacki@digia.com>bb10
parent
0e99bd1990
commit
8369f6d3ea
|
|
@ -331,8 +331,8 @@ void tst_QTcpSocket::initTestCase_data()
|
|||
|
||||
qDebug() << QtNetworkSettings::serverName();
|
||||
QTest::newRow("WithoutProxy") << false << 0 << false;
|
||||
QTest::newRow("WithSocks5Proxy") << true << int(Socks5Proxy) << false;
|
||||
QTest::newRow("WithSocks5ProxyAuth") << true << int(Socks5Proxy | AuthBasic) << false;
|
||||
//QTest::newRow("WithSocks5Proxy") << true << int(Socks5Proxy) << false; ### temporarily disabled, QTBUG-38385
|
||||
//QTest::newRow("WithSocks5ProxyAuth") << true << int(Socks5Proxy | AuthBasic) << false; ### temporarily disabled, QTBUG-38385
|
||||
|
||||
QTest::newRow("WithHttpProxy") << true << int(HttpProxy) << false;
|
||||
QTest::newRow("WithHttpProxyBasicAuth") << true << int(HttpProxy | AuthBasic) << false;
|
||||
|
|
@ -340,8 +340,8 @@ void tst_QTcpSocket::initTestCase_data()
|
|||
|
||||
#ifndef QT_NO_SSL
|
||||
QTest::newRow("WithoutProxy SSL") << false << 0 << true;
|
||||
QTest::newRow("WithSocks5Proxy SSL") << true << int(Socks5Proxy) << true;
|
||||
QTest::newRow("WithSocks5AuthProxy SSL") << true << int(Socks5Proxy | AuthBasic) << true;
|
||||
//QTest::newRow("WithSocks5Proxy SSL") << true << int(Socks5Proxy) << true; ### temporarily disabled, QTBUG-38385
|
||||
//QTest::newRow("WithSocks5AuthProxy SSL") << true << int(Socks5Proxy | AuthBasic) << true; ### temporarily disabled, QTBUG-38385
|
||||
|
||||
QTest::newRow("WithHttpProxy SSL") << true << int(HttpProxy) << true;
|
||||
QTest::newRow("WithHttpProxyBasicAuth SSL") << true << int(HttpProxy | AuthBasic) << true;
|
||||
|
|
|
|||
Loading…
Reference in New Issue