1Do not run unnecessary or incompatible rtc tests on Android. 2 3--- a/tools/testing/selftests/rtc/rtctest.c 4+++ b/tools/testing/selftests/rtc/rtctest.c 5@@ -49,6 +49,7 @@ 6 rtc_tm.tm_hour, rtc_tm.tm_min, rtc_tm.tm_sec); 7 } 8 9+#ifndef __ANDROID__ // b/31578457 10 TEST_F_TIMEOUT(rtc, uie_read, NUM_UIE + 2) { 11 int i, rc, irq = 0; 12 unsigned long data; 13@@ -312,6 +313,7 @@ 14 new = timegm((struct tm *)&tm); 15 ASSERT_EQ(new, secs); 16 } 17+#endif 18 19 static void __attribute__((constructor)) 20 __constructor_order_last(void) 21