mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 22:17:38 +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
|
@ -7,11 +7,12 @@
|
|||
|
||||
namespace aria2 {
|
||||
|
||||
class TimegmTest:public CppUnit::TestFixture {
|
||||
class TimegmTest : public CppUnit::TestFixture {
|
||||
|
||||
CPPUNIT_TEST_SUITE(TimegmTest);
|
||||
CPPUNIT_TEST(testTimegm);
|
||||
CPPUNIT_TEST_SUITE_END();
|
||||
|
||||
public:
|
||||
void setUp() {}
|
||||
|
||||
|
@ -26,7 +27,7 @@ namespace {
|
|||
void setTime(struct tm* tm, int yr, int mon, int day, int h, int m, int s)
|
||||
{
|
||||
tm->tm_year = yr - 1900;
|
||||
tm->tm_mon = mon-1;
|
||||
tm->tm_mon = mon - 1;
|
||||
tm->tm_mday = day;
|
||||
tm->tm_hour = h;
|
||||
tm->tm_min = m;
|
||||
|
@ -49,9 +50,10 @@ void TimegmTest::testTimegm()
|
|||
setTime(&tm, 1970, 13, 1, 0, 0, 0);
|
||||
CPPUNIT_ASSERT_EQUAL((time_t)-1, timegm(&tm));
|
||||
setTime(&tm, 2039, 1, 1, 0, 0, 0);
|
||||
if(sizeof(time_t) == 4) {
|
||||
if (sizeof(time_t) == 4) {
|
||||
CPPUNIT_ASSERT_EQUAL((time_t)-1, timegm(&tm));
|
||||
} else if(sizeof(time_t) == 8) {
|
||||
}
|
||||
else if (sizeof(time_t) == 8) {
|
||||
CPPUNIT_ASSERT_EQUAL((time_t)2177452800LL, timegm(&tm));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue