mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 13:37:40 +03:00
2010-03-25 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Added vbegin() and vend() for fixed sized array. * src/DownloadHandlerConstants.cc * src/FeatureConfig.cc * src/OptionHandlerFactory.cc * src/ServerStat.cc * src/TimeA2.cc * src/XmlRpcMethod.cc * src/array_fun.h * src/download_helper.cc * src/messageDigest.cc * src/util.cc * test/BittorrentHelperTest.cc * test/DHTRoutingTableDeserializerTest.cc * test/DHTRoutingTableSerializerTest.cc * test/DefaultBtAnnounceTest.cc * test/DefaultBtProgressInfoFileTest.cc * test/DownloadContextTest.cc * test/DownloadHelperTest.cc * test/FeatureConfigTest.cc * test/FeedbackURISelectorTest.cc * test/HttpRequestTest.cc * test/InOrderURISelectorTest.cc * test/MSEHandshakeTest.cc * test/MultiDiskAdaptorTest.cc * test/MultiFileAllocationIteratorTest.cc * test/PriorityPieceSelectorTest.cc * test/RequestGroupManTest.cc * test/UtilTest.cc * test/XmlRpcMethodTest.cc * test/a2algoTest.cc * test/array_funTest.cc
This commit is contained in:
parent
8477e463e9
commit
f15d22b619
31 changed files with 120 additions and 91 deletions
|
@ -69,7 +69,7 @@ void DownloadHelperTest::testCreateRequestGroupForUri()
|
|||
"http://bravo/file",
|
||||
"http://charlie/file"
|
||||
};
|
||||
std::vector<std::string> uris(&array[0], &array[arrayLength(array)]);
|
||||
std::vector<std::string> uris(vbegin(array), vend(array));
|
||||
_option->put(PREF_SPLIT, "3");
|
||||
_option->put(PREF_DIR, "/tmp");
|
||||
_option->put(PREF_OUT, "file.out");
|
||||
|
@ -157,7 +157,7 @@ void DownloadHelperTest::testCreateRequestGroupForUri_parameterized()
|
|||
"http://{alpha, bravo}/file",
|
||||
"http://charlie/file"
|
||||
};
|
||||
std::vector<std::string> uris(&array[0], &array[arrayLength(array)]);
|
||||
std::vector<std::string> uris(vbegin(array), vend(array));
|
||||
_option->put(PREF_SPLIT, "3");
|
||||
_option->put(PREF_DIR, "/tmp");
|
||||
_option->put(PREF_OUT, "file.out");
|
||||
|
@ -193,7 +193,7 @@ void DownloadHelperTest::testCreateRequestGroupForUri_BitTorrent()
|
|||
"http://bravo/file",
|
||||
"http://charlie/file"
|
||||
};
|
||||
std::vector<std::string> uris(&array[0], &array[arrayLength(array)]);
|
||||
std::vector<std::string> uris(vbegin(array), vend(array));
|
||||
_option->put(PREF_SPLIT, "3");
|
||||
_option->put(PREF_DIR, "/tmp");
|
||||
_option->put(PREF_OUT, "file.out");
|
||||
|
@ -241,7 +241,7 @@ void DownloadHelperTest::testCreateRequestGroupForUri_Metalink()
|
|||
"http://charlie/file",
|
||||
"test.xml"
|
||||
};
|
||||
std::vector<std::string> uris(&array[0], &array[arrayLength(array)]);
|
||||
std::vector<std::string> uris(vbegin(array), vend(array));
|
||||
_option->put(PREF_SPLIT, "3");
|
||||
_option->put(PREF_METALINK_SERVERS, "2");
|
||||
_option->put(PREF_DIR, "/tmp");
|
||||
|
@ -329,7 +329,7 @@ void DownloadHelperTest::testCreateRequestGroupForBitTorrent()
|
|||
"http://charlie/file"
|
||||
};
|
||||
|
||||
std::vector<std::string> auxURIs(&array[0], &array[arrayLength(array)]);
|
||||
std::vector<std::string> auxURIs(vbegin(array), vend(array));
|
||||
_option->put(PREF_SPLIT, "5");
|
||||
_option->put(PREF_TORRENT_FILE, "test.torrent");
|
||||
_option->put(PREF_DIR, "/tmp");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue