summaryrefslogtreecommitdiffstats
path: root/tests/RenderScriptTests/Fountain_v11/AndroidManifest.xml
diff options
context:
space:
mode:
authorStephen Hines <srhines@google.com>2012-03-06 21:58:41 -0800
committerStephen Hines <srhines@google.com>2012-03-07 17:47:53 -0800
commit41f1e5edee2d2663ae46b64528894896ff96fa3d (patch)
treeb6729a6a26dded0fb506e1e09d54ac50128bdcbb /tests/RenderScriptTests/Fountain_v11/AndroidManifest.xml
parent6435da6119ea6f81d78c3d58f1941e8dd8f8d44d (diff)
downloadframeworks_base-41f1e5edee2d2663ae46b64528894896ff96fa3d.zip
frameworks_base-41f1e5edee2d2663ae46b64528894896ff96fa3d.tar.gz
frameworks_base-41f1e5edee2d2663ae46b64528894896ff96fa3d.tar.bz2
Check in older versions of RS tests.
This change adds a v11 version of Fountain, as well as v11 and v14 versions of RSTest. All tests currently build and pass on the required platforms. This also fixes an initialization bug for RSTest running on older devices. If we don't directly initialize "each" component of the vector types, it can result in uninitialized memory (or zero) being used for divisors (particularly with the char vector types). This triggers SIGFPE with the latest pending Clang/LLVM rebase. Change-Id: I92a70c2aeed4e20f110b1cb24ee926fc27be9dbb
Diffstat (limited to 'tests/RenderScriptTests/Fountain_v11/AndroidManifest.xml')
-rw-r--r--tests/RenderScriptTests/Fountain_v11/AndroidManifest.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/RenderScriptTests/Fountain_v11/AndroidManifest.xml b/tests/RenderScriptTests/Fountain_v11/AndroidManifest.xml
new file mode 100644
index 0000000..fcb4faf
--- /dev/null
+++ b/tests/RenderScriptTests/Fountain_v11/AndroidManifest.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.android.fountain_v11">
+ <uses-sdk android:minSdkVersion="11" />
+ <application
+ android:label="Fountain_v11"
+ android:icon="@drawable/test_pattern">
+ <activity android:name="Fountain_v11">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ </application>
+</manifest>