mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 21:47:37 +03:00
util::parseIntSegments: Return SegList<int>
This commit is contained in:
parent
007b890fe4
commit
c0e4381780
14 changed files with 71 additions and 86 deletions
|
@ -83,10 +83,9 @@ void DownloadContextTest::testSetFileFilter()
|
|||
files.push_back(std::shared_ptr<FileEntry>(new FileEntry("file", 1, i)));
|
||||
}
|
||||
ctx.setFileEntries(files.begin(), files.end());
|
||||
SegList<int> sgl;
|
||||
util::parseIntSegments(sgl, "6-8,2-4");
|
||||
auto sgl = util::parseIntSegments("6-8,2-4");
|
||||
sgl.normalize();
|
||||
ctx.setFileFilter(sgl);
|
||||
ctx.setFileFilter(std::move(sgl));
|
||||
const std::vector<std::shared_ptr<FileEntry> >& res = ctx.getFileEntries();
|
||||
CPPUNIT_ASSERT(!res[0]->isRequested());
|
||||
CPPUNIT_ASSERT(res[1]->isRequested());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue