aboutsummaryrefslogtreecommitdiffstats
path: root/manifmerger/tests/src/com/android/manifmerger/data/02_ignore_instrumentation.xml
diff options
context:
space:
mode:
Diffstat (limited to 'manifmerger/tests/src/com/android/manifmerger/data/02_ignore_instrumentation.xml')
-rwxr-xr-xmanifmerger/tests/src/com/android/manifmerger/data/02_ignore_instrumentation.xml62
1 files changed, 0 insertions, 62 deletions
diff --git a/manifmerger/tests/src/com/android/manifmerger/data/02_ignore_instrumentation.xml b/manifmerger/tests/src/com/android/manifmerger/data/02_ignore_instrumentation.xml
deleted file mode 100755
index ed0dbbc..0000000
--- a/manifmerger/tests/src/com/android/manifmerger/data/02_ignore_instrumentation.xml
+++ /dev/null
@@ -1,62 +0,0 @@
-#
-# Test:
-# - Instrumentation element from libraries are not merged in main manifest.
-#
-
-@main
-
-<manifest
- xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.example.app1"
- android:versionCode="100"
- android:versionName="1.0.0">
-
- <application
- android:label="@string/app_name"
- android:icon="@drawable/app_icon"
- android:backupAgent="com.example.app.BackupAgentClass"
- android:restoreAnyVersion="true"
- android:allowBackup="true"
- android:killAfterRestore="true"
- android:name="com.example.TheApp" >
- </application>
-
-</manifest>
-
-@lib1
-
-<manifest
- xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.example.app1"
- android:versionCode="100"
- android:versionName="1.0.0">
-
- <!-- Instrumentation is not merged from libraries. -->
- <instrumentation
- android:targetPackage="com.example.app1"
- android:name="android.test.InstrumentationTestRunner" />
-
-</manifest>
-
-@result
-
-<manifest
- xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.example.app1"
- android:versionCode="100"
- android:versionName="1.0.0">
-
- <application
- android:label="@string/app_name"
- android:icon="@drawable/app_icon"
- android:backupAgent="com.example.app.BackupAgentClass"
- android:restoreAnyVersion="true"
- android:allowBackup="true"
- android:killAfterRestore="true"
- android:name="com.example.TheApp" >
- </application>
-
-</manifest>
-
-@errors
-