util::parseIntSegments: Return SegList<int>

This commit is contained in:
Tatsuhiro Tsujikawa 2014-06-04 23:21:01 +09:00
parent 007b890fe4
commit c0e4381780
14 changed files with 71 additions and 86 deletions

View file

@ -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());