mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +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
|
@ -9,28 +9,28 @@
|
|||
|
||||
namespace aria2 {
|
||||
|
||||
class FallocFileAllocationIteratorTest:public CppUnit::TestFixture {
|
||||
class FallocFileAllocationIteratorTest : public CppUnit::TestFixture {
|
||||
|
||||
CPPUNIT_TEST_SUITE(FallocFileAllocationIteratorTest);
|
||||
CPPUNIT_TEST(testAllocate);
|
||||
CPPUNIT_TEST_SUITE_END();
|
||||
private:
|
||||
|
||||
private:
|
||||
public:
|
||||
void setUp() {}
|
||||
|
||||
void testAllocate();
|
||||
};
|
||||
|
||||
|
||||
CPPUNIT_TEST_SUITE_REGISTRATION( FallocFileAllocationIteratorTest );
|
||||
CPPUNIT_TEST_SUITE_REGISTRATION(FallocFileAllocationIteratorTest);
|
||||
|
||||
void FallocFileAllocationIteratorTest::testAllocate()
|
||||
{
|
||||
// When fallocate is used, test fails if file system does not
|
||||
// support it. So skip it.
|
||||
// When fallocate is used, test fails if file system does not
|
||||
// support it. So skip it.
|
||||
#ifndef HAVE_FALLOCATE
|
||||
std::string fn = A2_TEST_OUT_DIR"/aria2_FallocFileAllocationIteratorTest_testAllocate";
|
||||
std::string fn =
|
||||
A2_TEST_OUT_DIR "/aria2_FallocFileAllocationIteratorTest_testAllocate";
|
||||
std::ofstream of(fn.c_str(), std::ios::binary);
|
||||
of << "0123456789";
|
||||
of.close();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue