1{ 2 "presubmit": [ 3 { 4 "name": "CtsOsTestCases", 5 "options": [ 6 { 7 "include-annotation": "android.platform.test.annotations.Presubmit" 8 }, 9 { 10 "exclude-annotation": "android.platform.test.annotations.LargeTest" 11 }, 12 { 13 "exclude-annotation": "androidx.test.filters.FlakyTest" 14 }, 15 { 16 "exclude-annotation": "org.junit.Ignore" 17 }, 18 { 19 "include-filter": "android.os.cts.StrictModeTest" 20 } 21 ], 22 "file_patterns": ["(/|^)Context.java", "(/|^)ContextWrapper.java"] 23 }, 24 { 25 "name": "FrameworksCoreTests", 26 "options": [ 27 { 28 "exclude-annotation": "androidx.test.filters.FlakyTest" 29 }, 30 { 31 "exclude-annotation": "org.junit.Ignore" 32 }, 33 { 34 "include-filter": "android.content.ContextTest" 35 }, 36 { 37 "include-filter": "android.content.ComponentCallbacksControllerTest" 38 }, 39 { 40 "include-filter": "android.content.ContextWrapperTest" 41 } 42 ], 43 "file_patterns": ["(/|^)Context.java", "(/|^)ContextWrapper.java", "(/|^)ComponentCallbacksController.java"] 44 } 45 ], 46 "presubmit-large": [ 47 { 48 "name": "CtsContentTestCases", 49 "options": [ 50 { 51 "exclude-annotation": "androidx.test.filters.FlakyTest" 52 }, 53 { 54 "exclude-annotation": "org.junit.Ignore" 55 }, 56 { 57 "include-filter": "android.content.wm.cts" 58 } 59 ], 60 "file_patterns": ["(/|^)Context.java", "(/|^)ContextWrapper.java"] 61 } 62 ] 63}