Skip to content

Commit 2250ad1

Browse files
authored
Disable SessionID test on Android (#1234)
1 parent a3136c9 commit 2250ad1

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

analytics/integration_test/src/integration_test.cc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,14 @@ TEST_F(FirebaseAnalyticsTest, TestGetAnalyticsInstanceID) {
107107
}
108108

109109
TEST_F(FirebaseAnalyticsTest, TestGetSessionID) {
110+
#if defined(__ANDROID__)
111+
// Android continues to have random failures on this test despite the
112+
// workarounds below, so just skip it for now.
113+
LogInfo("Skipping TestGetSessionID on Android");
114+
GTEST_SKIP();
115+
return;
116+
#endif
117+
110118
// Android emulator tests are currently not working due to getSessionId being
111119
// disabled on virtual FTL devices, due to an older version of Google Play
112120
// services.

0 commit comments

Comments
 (0)