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