diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2013-01-10 13:26:31 -0600 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2013-01-10 13:26:31 -0600 |
commit | a6308bc2224db238e72c570482717b68246a7ce0 (patch) | |
tree | 28ef7fd1a4d7a4f6ea3ed3037e54eafeeb1aa7da /tests/rtc-test.c | |
parent | 8757c09f15dcd455f81b4faed73da0d35d7e6b53 (diff) | |
parent | 067f0691277325dcce8401534d2ffc6164305021 (diff) |
Merge remote-tracking branch 'kraxel/build.1' into staging
* kraxel/build.1:
m48t59-test: don't touch watchdog
rtc-test: skip year-2038 overflow check in case time_t is 32bit only
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'tests/rtc-test.c')
-rw-r--r-- | tests/rtc-test.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/rtc-test.c b/tests/rtc-test.c index 02edbf5727..e7123cafbc 100644 --- a/tests/rtc-test.c +++ b/tests/rtc-test.c @@ -201,6 +201,10 @@ static void set_year_20xx(void) g_assert_cmpint(cmos_read(RTC_YEAR), ==, 0x11); g_assert_cmpint(cmos_read(RTC_CENTURY), ==, 0x20); + if (sizeof(time_t) == 4) { + return; + } + /* Set a date in 2080 to ensure there is no year-2038 overflow. */ cmos_write(RTC_REG_A, 0x76); cmos_write(RTC_YEAR, 0x80); |