mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 13:37:40 +03:00
make clang-format using clang-format-3.6
This commit is contained in:
parent
4abad2f64c
commit
b1132d6b10
1095 changed files with 30423 additions and 33770 deletions
|
@ -8,27 +8,26 @@
|
|||
|
||||
namespace aria2 {
|
||||
|
||||
class SingleFileAllocationIteratorTest:public CppUnit::TestFixture {
|
||||
class SingleFileAllocationIteratorTest : public CppUnit::TestFixture {
|
||||
|
||||
CPPUNIT_TEST_SUITE(SingleFileAllocationIteratorTest);
|
||||
CPPUNIT_TEST(testAllocate);
|
||||
CPPUNIT_TEST_SUITE_END();
|
||||
private:
|
||||
|
||||
private:
|
||||
public:
|
||||
void setUp() {}
|
||||
|
||||
void testAllocate();
|
||||
};
|
||||
|
||||
|
||||
CPPUNIT_TEST_SUITE_REGISTRATION( SingleFileAllocationIteratorTest );
|
||||
CPPUNIT_TEST_SUITE_REGISTRATION(SingleFileAllocationIteratorTest);
|
||||
|
||||
void SingleFileAllocationIteratorTest::testAllocate()
|
||||
{
|
||||
std::string dir = A2_TEST_OUT_DIR;
|
||||
std::string fname = "aria2_SingleFileAllocationIteratorTest_testAllocate";
|
||||
std::string fn = dir+"/"+fname;
|
||||
std::string fn = dir + "/" + fname;
|
||||
std::ofstream of(fn.c_str(), std::ios::binary);
|
||||
of << "0123456789";
|
||||
of.close();
|
||||
|
@ -45,7 +44,7 @@ void SingleFileAllocationIteratorTest::testAllocate()
|
|||
SingleFileAllocationIterator itr(&writer, offset, totalLength);
|
||||
itr.init();
|
||||
|
||||
while(!itr.finished()) {
|
||||
while (!itr.finished()) {
|
||||
itr.allocateChunk();
|
||||
}
|
||||
File f(fn);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue