mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
2010-03-21 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Defined gid_t as int64_t. * src/BtDependency.cc * src/BtStopDownloadCommand.cc * src/FtpNegotiationCommand.cc * src/HttpResponseCommand.cc * src/RequestGroup.cc * src/RequestGroup.h * src/RequestGroupMan.cc * src/TrackerWatcherCommand.cc * src/XmlRpcMethodImpl.cc * src/message.h * test/XmlRpcMethodTest.cc
This commit is contained in:
parent
de8fef01f3
commit
a0d13a7fee
12 changed files with 83 additions and 43 deletions
|
@ -668,7 +668,7 @@ void XmlRpcMethodTest::testGetVersion()
|
|||
void XmlRpcMethodTest::testGatherStoppedDownload()
|
||||
{
|
||||
std::vector<SharedHandle<FileEntry> > fileEntries;
|
||||
std::vector<int32_t> followedBy;
|
||||
std::vector<gid_t> followedBy;
|
||||
followedBy.push_back(3);
|
||||
followedBy.push_back(4);
|
||||
SharedHandle<DownloadResult> d
|
||||
|
@ -767,7 +767,7 @@ void XmlRpcMethodTest::testChangePosition()
|
|||
CPPUNIT_ASSERT_EQUAL(0, res._code);
|
||||
CPPUNIT_ASSERT_EQUAL((int64_t)1, res._param.i());
|
||||
CPPUNIT_ASSERT_EQUAL
|
||||
((int32_t)1, _e->_requestGroupMan->getReservedGroups()[1]->getGID());
|
||||
((gid_t)1, _e->_requestGroupMan->getReservedGroups()[1]->getGID());
|
||||
}
|
||||
|
||||
void XmlRpcMethodTest::testChangePosition_fail()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue