Tomasz Mikolajewski 6a72a0ea9c Fix perf tests for cold startup.
Kiling ia force-stopping was invalidating the entire roots cache.

Bug: 27743087
Change-Id: Ib788cfeaa6e60c40b7277ba7ca0f2371816eded1
2016-04-04 10:34:36 +09:00

21 lines
792 B
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.documentsui.appperftests">
<uses-permission android:name="android.permission.KILL_BACKGROUND_PROCESSES" />
<application>
<uses-library android:name="android.test.runner" />
<activity
android:name="com.android.documentsui.LauncherActivity" />
</application>
<!-- This package instrumentates itself, so the DocumentsUI process can be killed without
killing the testing package. -->
<instrumentation android:name="android.test.InstrumentationTestRunner"
android:targetPackage="com.android.documentsui.appperftests"
android:label="App performance tests for DocumentsUI" />
</manifest>