@@ -142,6 +142,9 @@ class BundleTest : public FirestoreIntegrationTest {
142
142
};
143
143
144
144
TEST_F (BundleTest, CanLoadBundlesWithoutProgressUpdates) {
145
+ GTEST_SKIP () << " Bundle tests fails often on Android and iOS in GitHub "
146
+ " Actions and needs to be investigated (b/233751585)" ;
147
+
145
148
Firestore* db = TestFirestore ();
146
149
auto bundle = CreateTestBundle (db);
147
150
@@ -152,6 +155,9 @@ TEST_F(BundleTest, CanLoadBundlesWithoutProgressUpdates) {
152
155
}
153
156
154
157
TEST_F (BundleTest, CanLoadBundlesWithProgressUpdates) {
158
+ GTEST_SKIP () << " Bundle tests fails often on Android and iOS in GitHub "
159
+ " Actions and needs to be investigated (b/233751585)" ;
160
+
155
161
Firestore* db = TestFirestore ();
156
162
auto bundle = CreateTestBundle (db);
157
163
@@ -180,6 +186,9 @@ TEST_F(BundleTest, CanLoadBundlesWithProgressUpdates) {
180
186
}
181
187
182
188
TEST_F (BundleTest, CanDeleteFirestoreFromProgressUpdate) {
189
+ GTEST_SKIP () << " Bundle tests fails often on Android and iOS in GitHub "
190
+ " Actions and needs to be investigated (b/233751585)" ;
191
+
183
192
Firestore* db = TestFirestore ();
184
193
auto bundle = CreateTestBundle (db);
185
194
@@ -216,6 +225,9 @@ TEST_F(BundleTest, CanDeleteFirestoreFromProgressUpdate) {
216
225
}
217
226
218
227
TEST_F (BundleTest, LoadBundlesForASecondTimeSkips) {
228
+ GTEST_SKIP () << " Bundle tests fails often on Android and iOS in GitHub "
229
+ " Actions and needs to be investigated (b/233751585)" ;
230
+
219
231
// TODO(wuandy): This test fails on Windows CI, but
220
232
// local run is fine. We need to figure out why and re-enable it.
221
233
SKIP_TEST_ON_WINDOWS;
@@ -244,6 +256,9 @@ TEST_F(BundleTest, LoadBundlesForASecondTimeSkips) {
244
256
}
245
257
246
258
TEST_F (BundleTest, LoadInvalidBundlesShouldFail) {
259
+ GTEST_SKIP () << " Bundle tests fails often on Android and iOS in GitHub "
260
+ " Actions and needs to be investigated (b/233751585)" ;
261
+
247
262
// TODO(wuandy): This test fails on Windows CI, but
248
263
// local run is fine. We need to figure out why and re-enable it.
249
264
SKIP_TEST_ON_WINDOWS;
@@ -273,13 +288,13 @@ TEST_F(BundleTest, LoadInvalidBundlesShouldFail) {
273
288
}
274
289
275
290
TEST_F (BundleTest, LoadBundleWithDocumentsAlreadyPulledFromBackend) {
291
+ GTEST_SKIP () << " Bundle tests fails often on Android and iOS in GitHub "
292
+ " Actions and needs to be investigated (b/233751585)" ;
293
+
276
294
// TODO(wuandy, b/189477267): This test fails on Windows CI, but
277
295
// local run is fine. We need to figure out why and re-enable it.
278
296
SKIP_TEST_ON_WINDOWS;
279
297
280
- GTEST_SKIP () << " This test fails often on Android and iOS in GitHub Actions "
281
- " and needs to be investigated (b/233751585)" ;
282
-
283
298
Firestore* db = TestFirestore ();
284
299
auto collection = db->Collection (" coll-1" );
285
300
WriteDocuments (collection,
@@ -322,6 +337,9 @@ TEST_F(BundleTest, LoadBundleWithDocumentsAlreadyPulledFromBackend) {
322
337
}
323
338
324
339
TEST_F (BundleTest, LoadedDocumentsShouldNotBeGarbageCollectedRightAway) {
340
+ GTEST_SKIP () << " Bundle tests fails often on Android and iOS in GitHub "
341
+ " Actions and needs to be investigated (b/233751585)" ;
342
+
325
343
// TODO(wuandy, b/189477267): This test fails on Windows CI, but
326
344
// local run is fine. We need to figure out why and re-enable it.
327
345
SKIP_TEST_ON_WINDOWS;
@@ -346,6 +364,9 @@ TEST_F(BundleTest, LoadedDocumentsShouldNotBeGarbageCollectedRightAway) {
346
364
}
347
365
348
366
TEST_F (BundleTest, LoadDocumentsFromOtherProjectsShouldFail) {
367
+ GTEST_SKIP () << " Bundle tests fails often on Android and iOS in GitHub "
368
+ " Actions and needs to be investigated (b/233751585)" ;
369
+
349
370
Firestore* db = TestFirestore ();
350
371
auto bundle = CreateBundle (" other-project" );
351
372
std::vector<LoadBundleTaskProgress> progresses;
@@ -366,6 +387,9 @@ TEST_F(BundleTest, LoadDocumentsFromOtherProjectsShouldFail) {
366
387
}
367
388
368
389
TEST_F (BundleTest, GetInvalidNamedQuery) {
390
+ GTEST_SKIP () << " Bundle tests fails often on Android and iOS in GitHub "
391
+ " Actions and needs to be investigated (b/233751585)" ;
392
+
369
393
Firestore* db = TestFirestore ();
370
394
{
371
395
auto future = db->NamedQuery (" DOES_NOT_EXIST" );
0 commit comments