1{ 2 "presubmit": [ 3 { 4 "name": "NetworkStackTests" 5 }, 6 { 7 "name": "NetworkStackNextTests" 8 }, 9 { 10 "name": "NetworkStackIntegrationTests" 11 } 12 ], 13 "postsubmit": [ 14 { 15 "name": "NetworkStackHostTests" 16 } 17 ], 18 "auto-postsubmit": [ 19 // Test tag for automotive targets. These are only running in postsubmit so as to harden the 20 // automotive targets to avoid introducing additional test flake and build time. The plan for 21 // presubmit testing for auto is to augment the existing tests to cover auto use cases as well. 22 // Additionally, this tag is used in targeted test suites to limit resource usage on the test 23 // infra during the hardening phase. 24 // TODO: this tag to be removed once the above is no longer an issue. 25 { 26 "name": "NetworkStackTests" 27 }, 28 { 29 "name": "NetworkStackNextTests" 30 }, 31 { 32 "name": "NetworkStackHostTests" 33 }, 34 { 35 "name": "NetworkStackIntegrationTests" 36 } 37 ], 38 "mainline-presubmit": [ 39 // These are unit tests only, so they don't actually require any modules to be installed. 40 // We must specify at least one module here or the tests won't run. Use the same set as CTS 41 // so in theory the infra would not need to reinstall/reboot devices to run both. 42 { 43 // TODO: add back tethering when it is updatable in this branch 44 "name": "NetworkStackTests[CaptivePortalLoginGoogle.apk+NetworkStackGoogle.apk+com.google.android.resolv.apex]" 45 } 46 ], 47 "mainline-postsubmit": [ 48 { 49 "name": "NetworkStackIntegrationTests[CaptivePortalLoginGoogle.apk+NetworkStackGoogle.apk+com.google.android.resolv.apex+com.google.android.tethering.apex]" 50 } 51 ], 52 "imports": [ 53 { 54 "path": "packages/modules/Connectivity" 55 } 56 ] 57} 58