1// Below lists the TEST_MAPPING tests to do TF integration tests to make sure 2// the expectation of setup with different target_preparers + run are still good. 3{ 4 "presubmit": [ 5 { 6 // Instrumentation Test with Annotation Filter/PushFilePreparer/ 7 // RumCommandTargetPreparer/TestFilePushSetup 8 "name": "HelloWorldTests", 9 "options": [ 10 { 11 "instrumentation-arg": "annotation:=android.support.test.filters.SmallTest" 12 } 13 ] 14 }, 15 { 16 "name": "hello_world_test", 17 "host": true 18 }, 19 { 20 // Instrumentation Test with FilePusher/ApkInstaller/RumCommandTargetPreparer. 21 "name": "CtsApacheHttpLegacy27ApiSignatureTestCases" 22 }, 23 { 24 // Gtest with FilePusher to push the whole testdata(libs/files). 25 "name": "ziparchive-tests" 26 }, 27 { 28 // Instrumentation Test with Class Filter/ApkInstaller. 29 "name": "CtsDpiTestCases", 30 "options": [ 31 { 32 "include-filter": "android.dpi.cts.ConfigurationScreenLayoutTest" 33 } 34 ] 35 }, 36 { 37 // Jar Host with ApkInstaller. 38 "name": "CtsSampleHostTestCases" 39 } 40 ], 41 // TODO(b/144852628): Remove after actual platinum tests are added to TEST_MAPPING files. 42 "staged-platinum-postsubmit": [ 43 { 44 "name": "HelloWorldTests" 45 } 46 ], 47 "platinum-postsubmit": [ 48 { 49 "name": "HelloWorldTests" 50 } 51 ] 52} 53