Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Side by Side Diff: mojo/tools/data/apptests

Issue 943053003: Simple multi-url support for mojo apps (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: rebase + fix android Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # This file contains a list of Mojo gtest unit tests. 1 # This file contains a list of Mojo gtest unit tests.
2 # This must be valid python. It can use the |config| global that will be a 2 # This must be valid python. It can use the |config| global that will be a
3 # mopy.config.Config object and must set a |tests| global that will contain the 3 # mopy.config.Config object and must set a |tests| global that will contain the
4 # tests to run. 4 # tests to run.
5 # TODO(vtl|msw): Add a way of specifying data dependencies. 5 # TODO(vtl|msw): Add a way of specifying data dependencies.
6 6
7 tests = [ 7 tests = [
8 { 8 {
9 "test": "mojo:clipboard_apptests", 9 "test": "mojo:clipboard_apptests",
10 }, 10 },
(...skipping 12 matching lines...) Expand all
23 "test": "mojo:mojo_view_manager_client_apptests", 23 "test": "mojo:mojo_view_manager_client_apptests",
24 "shell-args": ["--args-for=mojo:native_viewport_service --use-headless-confi g --use-osmesa"], 24 "shell-args": ["--args-for=mojo:native_viewport_service --use-headless-confi g --use-osmesa"],
25 }, 25 },
26 { 26 {
27 "test": "mojo:view_manager_service_apptests", 27 "test": "mojo:view_manager_service_apptests",
28 "shell-args": ["--args-for=mojo:native_viewport_service --use-headless-confi g --use-osmesa"], 28 "shell-args": ["--args-for=mojo:native_viewport_service --use-headless-confi g --use-osmesa"],
29 }, 29 },
30 { 30 {
31 "test": "mojo:window_manager_apptests", 31 "test": "mojo:window_manager_apptests",
32 }, 32 },
33 {
34 "test": "mojo:shell_apptests",
35 },
33 ] 36 ]
34 37
35 if config.target_os == config.OS_LINUX: 38 if config.target_os == config.OS_LINUX:
36 tests += [ 39 tests += [
37 { 40 {
38 "test": "mojo:example_apptests", 41 "test": "mojo:example_apptests",
39 # ExampleApplicationTest.CheckCommandLineArg checks --example_apptest_arg. 42 # ExampleApplicationTest.CheckCommandLineArg checks --example_apptest_arg.
40 "test-args": ["--example_apptest_arg"], 43 "test-args": ["--example_apptest_arg"],
41 "shell-args": [ 44 "shell-args": [
42 "--url-mappings=mojo:example_service=mojo:python_example_service" 45 "--url-mappings=mojo:example_service=mojo:python_example_service"
(...skipping 30 matching lines...) Expand all
73 { 76 {
74 "test": "mojo:js_apptests", 77 "test": "mojo:js_apptests",
75 }, 78 },
76 { 79 {
77 "test": "mojo:reaper_apptests", 80 "test": "mojo:reaper_apptests",
78 }, 81 },
79 { 82 {
80 "test": "mojo:dart_apptests", 83 "test": "mojo:dart_apptests",
81 }, 84 },
82 ] 85 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698