Brian Muramatsu | 320a7a1 | 2010-07-08 16:37:21 -0700 | [diff] [blame] | 1 | # Copyright (C) 2010 The Android Open Source Project |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
Brian Muramatsu | 70a9e3f | 2010-06-25 15:27:09 -0700 | [diff] [blame] | 15 | CTS_APPS_LIST := \ |
| 16 | CtsVerifier |
| 17 | |
Brian Muramatsu | 320a7a1 | 2010-07-08 16:37:21 -0700 | [diff] [blame] | 18 | CTS_SECURITY_APPS_LIST := \ |
| 19 | CtsAppAccessData \ |
| 20 | CtsAppWithData \ |
| 21 | CtsInstrumentationAppDiffCert \ |
| 22 | CtsPermissionDeclareApp \ |
| 23 | CtsSharedUidInstall \ |
| 24 | CtsSharedUidInstallDiffCert \ |
| 25 | CtsSimpleAppInstall \ |
| 26 | CtsSimpleAppInstallDiffCert \ |
| 27 | CtsTargetInstrumentationApp \ |
| 28 | CtsUsePermissionDiffCert |
| 29 | |
Brian Muramatsu | 2f8eead | 2010-09-24 14:56:43 -0700 | [diff] [blame] | 30 | # These test cases will be analyzed by the CTS API coverage tools. |
| 31 | CTS_COVERAGE_TEST_CASE_LIST := \ |
Brian Muramatsu | 320a7a1 | 2010-07-08 16:37:21 -0700 | [diff] [blame] | 32 | CtsAccessibilityServiceTestCases \ |
| 33 | CtsAccountManagerTestCases \ |
| 34 | CtsAppTestCases \ |
| 35 | CtsBluetoothTestCases \ |
| 36 | CtsContentTestCases \ |
| 37 | CtsDatabaseTestCases \ |
Brian Muramatsu | 320a7a1 | 2010-07-08 16:37:21 -0700 | [diff] [blame] | 38 | CtsDpiTestCases \ |
| 39 | CtsDpiTestCases2 \ |
| 40 | CtsExampleTestCases \ |
| 41 | CtsGestureTestCases \ |
| 42 | CtsGraphicsTestCases \ |
| 43 | CtsHardwareTestCases \ |
| 44 | CtsJniTestCases \ |
| 45 | CtsLocationTestCases \ |
| 46 | CtsMediaTestCases \ |
| 47 | CtsOsTestCases \ |
| 48 | CtsPermissionTestCases \ |
| 49 | CtsPermission2TestCases \ |
Brian Muramatsu | 6d3c3bd | 2010-12-03 12:15:30 -0800 | [diff] [blame] | 50 | CtsPreferenceTestCases \ |
Brian Muramatsu | 320a7a1 | 2010-07-08 16:37:21 -0700 | [diff] [blame] | 51 | CtsProviderTestCases \ |
Brian Muramatsu | e591e52 | 2010-04-26 16:50:50 -0700 | [diff] [blame] | 52 | CtsSaxTestCases \ |
Brian Muramatsu | d8cf2cb | 2011-05-03 12:49:56 -0700 | [diff] [blame] | 53 | CtsSecurityTestCases \ |
Brian Muramatsu | 320a7a1 | 2010-07-08 16:37:21 -0700 | [diff] [blame] | 54 | CtsSpeechTestCases \ |
| 55 | CtsTelephonyTestCases \ |
Brian Muramatsu | 2f8eead | 2010-09-24 14:56:43 -0700 | [diff] [blame] | 56 | CtsTestStubs \ |
Brian Muramatsu | 320a7a1 | 2010-07-08 16:37:21 -0700 | [diff] [blame] | 57 | CtsTextTestCases \ |
| 58 | CtsUtilTestCases \ |
| 59 | CtsViewTestCases \ |
| 60 | CtsWebkitTestCases \ |
| 61 | CtsWidgetTestCases \ |
| 62 | CtsNetTestCases \ |
Brian Muramatsu | 320a7a1 | 2010-07-08 16:37:21 -0700 | [diff] [blame] | 63 | CtsPerformanceTestCases \ |
| 64 | CtsPerformance2TestCases \ |
| 65 | CtsPerformance3TestCases \ |
| 66 | CtsPerformance4TestCases \ |
Brian Muramatsu | 2f8eead | 2010-09-24 14:56:43 -0700 | [diff] [blame] | 67 | CtsPerformance5TestCases |
| 68 | |
| 69 | CTS_TEST_CASE_LIST := \ |
| 70 | TestDeviceSetup \ |
| 71 | CtsDelegatingAccessibilityService \ |
| 72 | SignatureTest \ |
Brian Muramatsu | 320a7a1 | 2010-07-08 16:37:21 -0700 | [diff] [blame] | 73 | ApiDemos \ |
| 74 | ApiDemosReferenceTest \ |
Brian Muramatsu | 70a9e3f | 2010-06-25 15:27:09 -0700 | [diff] [blame] | 75 | $(CTS_APPS_LIST) \ |
Brian Muramatsu | 2f8eead | 2010-09-24 14:56:43 -0700 | [diff] [blame] | 76 | $(CTS_COVERAGE_TEST_CASE_LIST) \ |
Brian Muramatsu | 320a7a1 | 2010-07-08 16:37:21 -0700 | [diff] [blame] | 77 | $(CTS_SECURITY_APPS_LIST) |