From: Jason McDonald Date: Wed, 21 Dec 2011 00:47:38 +0000 (+1000) Subject: Remove mention of Trolltech in QHttp autotest. X-Git-Tag: qt-v5.0.0-alpha1~2125 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9fe76bf6a684c61263e1ef584668404d7c215805;p=profile%2Fivi%2Fqtbase.git Remove mention of Trolltech in QHttp autotest. The data file named "trolltech" has nothing specific to Trolltech in its contents. Rename it to "testhtml". The lack of a file extension is intentional. Task-number: QTBUG-19653 Change-Id: Idc5c5f4ffa447151e47f66ff7364f0fa8753a699 Reviewed-by: Rohan McGovern --- diff --git a/tests/auto/network/access/qhttp/qhttp.pro b/tests/auto/network/access/qhttp/qhttp.pro index d25b321..d672eb6 100644 --- a/tests/auto/network/access/qhttp/qhttp.pro +++ b/tests/auto/network/access/qhttp/qhttp.pro @@ -10,7 +10,7 @@ wince*: { webFiles.path = webserver cgi.files = webserver/cgi-bin/* cgi.path = webserver/cgi-bin - addFiles.files = rfc3252.txt trolltech + addFiles.files = rfc3252.txt testhtml addFiles.path = . DEPLOYMENT += addFiles webFiles cgi DEFINES += SRCDIR=\\\"\\\" diff --git a/tests/auto/network/access/qhttp/trolltech b/tests/auto/network/access/qhttp/testhtml similarity index 100% rename from tests/auto/network/access/qhttp/trolltech rename to tests/auto/network/access/qhttp/testhtml diff --git a/tests/auto/network/access/qhttp/tst_qhttp.cpp b/tests/auto/network/access/qhttp/tst_qhttp.cpp index f6514ba..8adb0ca 100644 --- a/tests/auto/network/access/qhttp/tst_qhttp.cpp +++ b/tests/auto/network/access/qhttp/tst_qhttp.cpp @@ -306,9 +306,9 @@ void tst_QHttp::get_data() QByteArray rfc3252 = file.readAll(); file.close(); - file.setFileName( SRCDIR "trolltech" ); + file.setFileName( SRCDIR "testhtml" ); QVERIFY( file.open( QIODevice::ReadOnly ) ); - QByteArray trolltech = file.readAll(); + QByteArray testhtml = file.readAll(); file.close(); // test the two get() modes in one routine @@ -334,7 +334,7 @@ void tst_QHttp::get_data() // qt.nokia.com/doc uses transfer-encoding=chunked /* qt.nokia.com/doc no longer seams to be using chuncked encodig. QTest::newRow( QString("chunked_01_%1").arg(i).toLatin1() ) << QString("test.troll.no") << 80u - << QString("/") << 1 << 200 << trolltech << (bool)(i==1); + << QString("/") << 1 << 200 << testhtml << (bool)(i==1); */ QTest::newRow( QString("chunked_02_%1").arg(i).toLatin1() ) << QtNetworkSettings::serverName() << 80u << QString("/qtest/cgi-bin/rfc.cgi") << 1 << 200 << rfc3252 << (bool)(i==1);