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

@ -12,11 +12,12 @@
namespace aria2 {
class GZipDecoderTest:public CppUnit::TestFixture {
class GZipDecoderTest : public CppUnit::TestFixture {
CPPUNIT_TEST_SUITE(GZipDecoderTest);
CPPUNIT_TEST(testDecode);
CPPUNIT_TEST_SUITE_END();
public:
void setUp() {}
@ -25,7 +26,6 @@ public:
void testDecode();
};
CPPUNIT_TEST_SUITE_REGISTRATION(GZipDecoderTest);
void GZipDecoderTest::testDecode()
@ -33,16 +33,16 @@ void GZipDecoderTest::testDecode()
GZipDecoder decoder;
decoder.init();
std::string outfile(A2_TEST_OUT_DIR"/aria2_GZipDecoderTest_testDecode");
std::string outfile(A2_TEST_OUT_DIR "/aria2_GZipDecoderTest_testDecode");
char buf[4_k];
std::ifstream in(A2_TEST_DIR"/gzip_decode_test.gz", std::ios::binary);
std::ifstream in(A2_TEST_DIR "/gzip_decode_test.gz", std::ios::binary);
std::ofstream out(outfile.c_str(), std::ios::binary);
while(in) {
while (in) {
in.read(buf, sizeof(buf));
std::string r = decoder.decode
(reinterpret_cast<const unsigned char*>(buf), in.gcount());
std::string r = decoder.decode(reinterpret_cast<const unsigned char*>(buf),
in.gcount());
out.write(r.data(), r.size());
}