File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
storage/integration_test/src Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -573,7 +573,12 @@ const char kPutFileTestFile[] = "PutFileTest.txt";
573
573
const char kGetFileTestFile [] = " GetFileTest.txt" ;
574
574
const char kFileUriScheme [] = " file://" ;
575
575
576
+ // TODO(b/255839066): Re-enable this test after the iOS 10.1.0 release
577
+ #if FIREBASE_PLATFORM_IOS
578
+ TEST_F (FirebaseStorageTest, DISABLED_TestPutFileAndGetFile) {
579
+ #else
576
580
TEST_F (FirebaseStorageTest, TestPutFileAndGetFile) {
581
+ #endif // FIREBASE_PLATFORM_IOS
577
582
SignIn ();
578
583
579
584
firebase::storage::StorageReference ref =
@@ -1461,7 +1466,13 @@ TEST_F(FirebaseStorageTest, TestLargeFileCancelUpload) {
1461
1466
// Cancel the operation and verify it was successfully canceled.
1462
1467
EXPECT_TRUE (controller.Cancel ());
1463
1468
1469
+ #if FIREBASE_PLATFORM_IOS
1470
+ // TODO(b/255839066): Change this to expect kErrorCancelled once iOS SDK
1471
+ // returns the correct error code.
1472
+ WaitForCompletion (future, " PutBytes" , firebase::storage::kErrorUnknown );
1473
+ #else
1464
1474
WaitForCompletion (future, " PutBytes" , firebase::storage::kErrorCancelled );
1475
+ #endif // FIREBASE_PLATFORM_IOS
1465
1476
1466
1477
FLAKY_TEST_SECTION_END ();
1467
1478
}
You can’t perform that action at this time.
0 commit comments