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