summaryrefslogtreecommitdiffstats
path: root/tests/DumpRenderTree2/AndroidManifest.xml
diff options
context:
space:
mode:
authorMaksymilian Osowski <maxosowski@google.com>2010-08-10 11:33:10 +0100
committerMaksymilian Osowski <maxosowski@google.com>2010-08-10 14:47:53 +0100
commitc8fb818b947f15d4eb467c229ea43806dd75c01e (patch)
tree190fed69a1f61850f42406cea48d0014bb1dadb6 /tests/DumpRenderTree2/AndroidManifest.xml
parent8aff3c0571f078b0b212bd283278791ebc478da5 (diff)
downloadframeworks_base-c8fb818b947f15d4eb467c229ea43806dd75c01e.zip
frameworks_base-c8fb818b947f15d4eb467c229ea43806dd75c01e.tar.gz
frameworks_base-c8fb818b947f15d4eb467c229ea43806dd75c01e.tar.bz2
Changed some parts of the code to prepare it for script support that will come in later commit.
Bug: 2903591 Change-Id: If8fcfad1557c8140c476212d8be9f99987cdaa18
Diffstat (limited to 'tests/DumpRenderTree2/AndroidManifest.xml')
-rw-r--r--tests/DumpRenderTree2/AndroidManifest.xml9
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/DumpRenderTree2/AndroidManifest.xml b/tests/DumpRenderTree2/AndroidManifest.xml
index 9f6097a..e4bfd59 100644
--- a/tests/DumpRenderTree2/AndroidManifest.xml
+++ b/tests/DumpRenderTree2/AndroidManifest.xml
@@ -25,8 +25,15 @@ limitations under the License.
</intent-filter>
</activity>
+ <!-- android:launchMode="singleTask" is there so we only have a one instance
+ of this activity. However, it doesn't seem to work exactly like described in the
+ documentation, because the behaviour of the application suggest
+ there is only a single task for all 3 activities. We don't understand
+ how exactly it all works, but at the moment it works just fine.
+ It can lead to some weird behaviour in the future. -->
<activity android:name=".TestsListActivity"
- android:label="Tests' list activity">
+ android:label="Tests' list activity"
+ android:launchMode="singleTask">
</activity>
<activity android:name=".LayoutTestsExecutor"