Loading tests/m48t59-test.c +5 −0 Original line number Diff line number Diff line Loading @@ -233,6 +233,11 @@ static void fuzz_registers(void) reg = (uint8_t)g_test_rand_int_range(0, 16); val = (uint8_t)g_test_rand_int_range(0, 256); if (reg == 7) { /* watchdog setup register, may trigger system reset, skip */ continue; } cmos_write(reg, val); cmos_read(reg); } Loading tests/rtc-test.c +4 −0 Original line number Diff line number Diff line Loading @@ -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); Loading Loading
tests/m48t59-test.c +5 −0 Original line number Diff line number Diff line Loading @@ -233,6 +233,11 @@ static void fuzz_registers(void) reg = (uint8_t)g_test_rand_int_range(0, 16); val = (uint8_t)g_test_rand_int_range(0, 256); if (reg == 7) { /* watchdog setup register, may trigger system reset, skip */ continue; } cmos_write(reg, val); cmos_read(reg); } Loading
tests/rtc-test.c +4 −0 Original line number Diff line number Diff line Loading @@ -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); Loading