make clang-format using clang-format-3.6

This commit is contained in:
Tatsuhiro Tsujikawa 2015-12-27 18:39:47 +09:00
parent 4abad2f64c
commit b1132d6b10
1095 changed files with 30423 additions and 33770 deletions

View file

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