summaryrefslogtreecommitdiffstats
path: root/tests/AppLaunch/AndroidManifest.xml
diff options
context:
space:
mode:
authorMaxim Siniavine <siniavine@google.com>2012-10-02 15:56:03 -0700
committerMaxim Siniavine <siniavine@google.com>2012-11-20 18:01:55 -0800
commitf58e5b6cdcecee6184784b3a6ac33f60341de170 (patch)
tree1559e7a690c4dabcff9a456affa6ee0a23a3400b /tests/AppLaunch/AndroidManifest.xml
parent89ac38bf70bb21e34c8c29b96e6316343ee46e87 (diff)
downloadframeworks_base-f58e5b6cdcecee6184784b3a6ac33f60341de170.zip
frameworks_base-f58e5b6cdcecee6184784b3a6ac33f60341de170.tar.gz
frameworks_base-f58e5b6cdcecee6184784b3a6ac33f60341de170.tar.bz2
Added app launch test.
The test will start each app and report the time it takes for the app to start in milliseconds. Change-Id: I974ac36f70f0d982aa01e46824fe138eb641d680
Diffstat (limited to 'tests/AppLaunch/AndroidManifest.xml')
-rw-r--r--tests/AppLaunch/AndroidManifest.xml13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/AppLaunch/AndroidManifest.xml b/tests/AppLaunch/AndroidManifest.xml
new file mode 100644
index 0000000..ac6760b
--- /dev/null
+++ b/tests/AppLaunch/AndroidManifest.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.android.tests.applaunch"
+ android:sharedUserId="android.uid.system" >
+ <instrumentation android:label="Measure app start up time"
+ android:name="android.test.InstrumentationTestRunner"
+ android:targetPackage="com.android.tests.applaunch" />
+
+ <application android:label="App Launch Test">
+ <uses-library android:name="android.test.runner" />
+ </application>
+</manifest> \ No newline at end of file