OSDN Git Service

fix Java package name for calendar launch performance test
[android-x86/packages-apps-Calendar.git] / tests / AndroidManifest.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright (C) 2008 The Android Open Source Project
3
4      Licensed under the Apache License, Version 2.0 (the "License");
5      you may not use this file except in compliance with the License.
6      You may obtain a copy of the License at
7
8           http://www.apache.org/licenses/LICENSE-2.0
9
10      Unless required by applicable law or agreed to in writing, software
11      distributed under the License is distributed on an "AS IS" BASIS,
12      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13      See the License for the specific language governing permissions and
14      limitations under the License.
15 -->
16
17 <!-- package name must be unique so suffix with "tests" so package loader doesn't ignore us -->
18 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
19     package="com.android.calendar.tests">
20
21     <application>
22         <uses-library android:name="android.test.runner" />
23     </application>
24
25     <!--
26     The test delcared in this instrumentation will be run along with tests declared by
27     all other applications via the command: "adb shell itr".
28     The "itr" command will find all tests declared by all applications. If you want to run just these
29     tests on their own then use the command:
30     "adb shell am instrument -w com.android.calendar.tests/android.test.InstrumentationTestRunner"
31     -->
32     <instrumentation android:name="android.test.InstrumentationTestRunner"
33                      android:targetPackage="com.android.calendar"
34                      android:label="calendar tests"/>
35
36     <instrumentation android:name="com.android.calendar.CalendarLaunchPerformance"
37         android:targetPackage="com.android.calendar"
38         android:label="Calendar Launch Performance">
39     </instrumentation>
40
41 </manifest>