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,11 +9,12 @@
namespace aria2 {
class ExceptionTest:public CppUnit::TestFixture {
class ExceptionTest : public CppUnit::TestFixture {
CPPUNIT_TEST_SUITE(ExceptionTest);
CPPUNIT_TEST(testStackTrace);
CPPUNIT_TEST_SUITE_END();
public:
void setUp() {}
@ -22,23 +23,22 @@ public:
void testStackTrace();
};
CPPUNIT_TEST_SUITE_REGISTRATION(ExceptionTest);
void ExceptionTest::testStackTrace()
{
DownloadFailureException c1 = DOWNLOAD_FAILURE_EXCEPTION2
("cause1", error_code::TIME_OUT);
DownloadFailureException c1 =
DOWNLOAD_FAILURE_EXCEPTION2("cause1", error_code::TIME_OUT);
DownloadFailureException c2 = DOWNLOAD_FAILURE_EXCEPTION2("cause2", c1);
DownloadFailureException e = DOWNLOAD_FAILURE_EXCEPTION2("exception thrown",
c2);
DownloadFailureException e =
DOWNLOAD_FAILURE_EXCEPTION2("exception thrown", c2);
CPPUNIT_ASSERT_EQUAL
(std::string
("Exception: [ExceptionTest.cc:34] errorCode=2 exception thrown\n"
" -> [ExceptionTest.cc:32] errorCode=2 cause2\n"
" -> [ExceptionTest.cc:31] errorCode=2 cause1\n"),
util::replace(e.stackTrace(), std::string(A2_TEST_DIR)+"/", ""));
CPPUNIT_ASSERT_EQUAL(
std::string(
"Exception: [ExceptionTest.cc:34] errorCode=2 exception thrown\n"
" -> [ExceptionTest.cc:32] errorCode=2 cause2\n"
" -> [ExceptionTest.cc:31] errorCode=2 cause1\n"),
util::replace(e.stackTrace(), std::string(A2_TEST_DIR) + "/", ""));
}
} // namespace aria2