Merge tag 'android-13.0.0_r32' into int/13/fp3

Android 13.0.0 release 32

* tag 'android-13.0.0_r32':
  Disable testDeltaUpdate_outOfSpaceError_fullUpdateScheduled

Change-Id: I9be13f846150a9aab28cbd279732cacbecaa9fc7
diff --git a/testing/contactsindexertests/src/com/android/server/appsearch/contactsindexer/ContactsIndexerUserInstanceTest.java b/testing/contactsindexertests/src/com/android/server/appsearch/contactsindexer/ContactsIndexerUserInstanceTest.java
index 5df0f0f..d498cd0 100644
--- a/testing/contactsindexertests/src/com/android/server/appsearch/contactsindexer/ContactsIndexerUserInstanceTest.java
+++ b/testing/contactsindexertests/src/com/android/server/appsearch/contactsindexer/ContactsIndexerUserInstanceTest.java
@@ -60,6 +60,7 @@
 
 import org.junit.After;
 import org.junit.Before;
+import org.junit.Ignore;
 import org.junit.Rule;
 import org.junit.Test;
 import org.junit.rules.TemporaryFolder;
@@ -591,6 +592,12 @@
         assertThat(mUpdateStats.mContactsDeleteSucceededCount).isEqualTo(4);
     }
 
+    // TODO(b/243542728) This tests whether a full update job will be run to prune the person
+    //  corpus when AppSearch reaches its max document limit. So we do want to change the device
+    //  config on the system to make the max document limit 100. And after we try to index 250
+    //  documents, the full update can be triggered. Disable this test for now as the asked
+    //  permissions are always denied.
+    @Ignore
     @Test
     public void testDeltaUpdate_outOfSpaceError_fullUpdateScheduled() throws Exception {
         UiAutomation uiAutomation = InstrumentationRegistry.getInstrumentation().getUiAutomation();