blob: 357df4f6f959735e98e45c64e260937e545b5734 [file] [log] [blame]
Santos Cordon61cc9302015-03-06 12:40:43 -08001<?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<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Santos Cordon349e0f42015-10-09 12:50:27 -070018 package="com.android.calllogbackup.tests"
Santos Cordon61cc9302015-03-06 12:40:43 -080019 android:sharedUserId="android.uid.shared">
20
21 <application>
22 <uses-library android:name="android.test.runner" />
23 </application>
24
25 <!--
26 The test declared 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:
Santos Cordon349e0f42015-10-09 12:50:27 -070030 "adb shell am instrument -w com.android.calllogbackup.tests/android.test.InstrumentationTestRunner"
Santos Cordon61cc9302015-03-06 12:40:43 -080031 -->
32 <instrumentation android:name="android.test.InstrumentationTestRunner"
Santos Cordon349e0f42015-10-09 12:50:27 -070033 android:targetPackage="com.android.calllogbackup"
Santos Cordon61cc9302015-03-06 12:40:43 -080034 android:label="CallLog Backup Tests">
35 </instrumentation>
36
37</manifest>