1// Add tests for all the mainline modules relying on this library. 2{ 3 "presubmit": [ 4 { 5 // Unit tests for framework-wifi.jar 6 "name": "FrameworksWifiApiTests" 7 }, 8 { 9 "name": "InternalAnnotationsTests" 10 }, 11 { 12 "name": "ModulesUtilsTests" 13 }, 14 { 15 // b/255344517: The binary XML tests currently lives in frameworks/base. 16 "name": "FrameworksCoreTests", 17 "options": [ 18 { 19 "include-filter": "com.android.internal.util.FastDataTest" 20 } 21 ], 22 "file_patterns": ["FastData"] 23 }, 24 { 25 // b/255344517: The binary XML tests currently lives in frameworks/base. 26 "name": "FrameworksCoreTests", 27 "options": [ 28 { 29 "include-filter": "android.util.XmlTest" 30 }, 31 { 32 "include-filter": "android.util.BinaryXmlTest" 33 } 34 ], 35 "file_patterns": ["Xml"] 36 } 37 // TODO: Re-enable when this is stable. 38 // { 39 // Wifi CTS tests 40 // "name": "CtsWifiTestCases" 41 // } 42 ], 43 "presubmit-large": [ 44 { 45 // Unit tests for service-wifi.jar 46 "name": "FrameworksWifiTests" 47 } 48 ], 49 // Run these on real devices in postsubmit while they're 50 // flakey on Cuttlefish. TODO(b/264496291): Fix this. 51 "avf-postsubmit": [ 52 { 53 "name": "ComposHostTestCases" 54 } 55 ] 56} 57