Commit 78780ec8 authored by msw's avatar msw Committed by Commit bot

Exclude apptests that fail or crash on Android.

Do not run list these tests to run on Android for now.

BUG=486220
TBR=sky@chromium.org
TEST=mojo/tools/apptest_runner.py mojo/tools/data/apptests out/android_Debug passes.

Review URL: https://codereview.chromium.org/1122373003

Cr-Commit-Position: refs/heads/master@{#329992}
parent 8eaf23b2
......@@ -28,10 +28,6 @@ tests = [
{
"test": "mojo:clipboard_apptests",
},
{
"test": "mojo:html_viewer_apptests",
"shell-args": ["--is-headless"],
},
{
"test": "mojo:network_service_apptests",
},
......@@ -39,15 +35,24 @@ tests = [
#{
# "test": "mojo:shell_apptests",
#},
{
"test": "mojo:view_manager_apptests",
"type": "gtest_isolated",
"shell-args": [
"--use-headless-config",
"--url-mappings=mojo:window_manager=mojo:test_window_manager"
]
},
{
"test": "mojo:resource_provider_apptests",
},
]
# TODO(msw): Get these tests passing on Android too. http://crbug.com/486220
if config.target_os != config.OS_ANDROID:
tests += [
{
"test": "mojo:html_viewer_apptests",
"shell-args": ["--is-headless"],
},
{
"test": "mojo:view_manager_apptests",
"type": "gtest_isolated",
"shell-args": [
"--use-headless-config",
"--url-mappings=mojo:window_manager=mojo:test_window_manager"
]
},
{
"test": "mojo:resource_provider_apptests",
},
]
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment