diff options
Diffstat (limited to 'tests/RenderScriptTests/PerfTest/AndroidManifest.xml')
-rw-r--r-- | tests/RenderScriptTests/PerfTest/AndroidManifest.xml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/tests/RenderScriptTests/PerfTest/AndroidManifest.xml b/tests/RenderScriptTests/PerfTest/AndroidManifest.xml index 3afb3b2..e024882 100644 --- a/tests/RenderScriptTests/PerfTest/AndroidManifest.xml +++ b/tests/RenderScriptTests/PerfTest/AndroidManifest.xml @@ -3,7 +3,8 @@ package="com.android.perftest"> <uses-sdk android:minSdkVersion="11" /> <application android:label="PerfTest" - android:icon="@drawable/test_pattern"> + android:icon="@drawable/test_pattern"> + <uses-library android:name="android.test.runner" /> <activity android:name="RsBench" android:label="RsBenchmark" android:theme="@android:style/Theme.Black.NoTitleBar"> @@ -12,5 +13,10 @@ <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> - </application> + </application> + + <instrumentation android:name=".RsPerfTestRunner" + android:targetPackage="com.android.perftest" + android:label="Test runner for RsBench tests" + /> </manifest> |