OLD | NEW |
1 # This file contains a list of Mojo gtest unit tests. | 1 # This file contains a list of Mojo gtest unit tests. |
2 # | 2 # |
3 # This must be valid Python. It may use the |config| global that will be a | 3 # This must be valid Python. It may use the |config| global that will be a |
4 # mopy.config.Config object, and must set a |tests| global that will contain the | 4 # mopy.config.Config object, and must set a |tests| global that will contain the |
5 # list of tests to run. | 5 # list of tests to run. |
6 # | 6 # |
7 # The entries in |tests| are dictionaries of the following form: | 7 # The entries in |tests| are dictionaries of the following form: |
8 # { | 8 # { |
9 # # Required URL for apptest. | 9 # # Required URL for apptest. |
10 # 'test': 'mojo:test_app_url', | 10 # 'test': 'mojo:test_app_url', |
(...skipping 21 matching lines...) Expand all Loading... |
32 #{ | 32 #{ |
33 # 'test': 'mojo:runner_apptests', | 33 # 'test': 'mojo:runner_apptests', |
34 # 'type': 'gtest_isolated', | 34 # 'type': 'gtest_isolated', |
35 #}, | 35 #}, |
36 ] | 36 ] |
37 | 37 |
38 # TODO(msw): Get these tests passing on Android too. http://crbug.com/486220 | 38 # TODO(msw): Get these tests passing on Android too. http://crbug.com/486220 |
39 if config.target_os != config.OS_ANDROID: | 39 if config.target_os != config.OS_ANDROID: |
40 tests += [ | 40 tests += [ |
41 { | 41 { |
42 'test': 'mojo:filesystem_apptests', | |
43 'type': 'gtest_isolated', | |
44 }, | |
45 { | |
46 'test': 'mojo:mash_wm_apptests', | 42 'test': 'mojo:mash_wm_apptests', |
47 'type': 'gtest_isolated', | 43 'type': 'gtest_isolated', |
48 'args': ['--use-x11-test-config', | 44 'args': ['--use-x11-test-config', |
49 '--override-use-gl-with-osmesa-for-tests'] | 45 '--override-use-gl-with-osmesa-for-tests'] |
50 }, | 46 }, |
51 { | 47 { |
52 'test': 'mojo:media_apptests', | 48 'test': 'mojo:media_apptests', |
53 'type': 'gtest_isolated', | 49 'type': 'gtest_isolated', |
54 }, | 50 }, |
55 # TODO(media): these tests fail in debug, which has no bot-coverage. | 51 # TODO(media): these tests fail in debug, which has no bot-coverage. |
56 # http://crbug.com/587523 | 52 # http://crbug.com/587523 |
57 # { | 53 # { |
58 # 'test': 'mojo:media_pipeline_integration_apptests', | 54 # 'test': 'mojo:media_pipeline_integration_apptests', |
59 # 'type': 'gtest_isolated', | 55 # 'type': 'gtest_isolated', |
60 # }, | 56 # }, |
61 { | 57 { |
62 'test': 'mojo:leveldb_apptests', | 58 'test': 'mojo:leveldb_apptests', |
63 'type': 'gtest_isolated', | 59 'type': 'gtest_isolated', |
64 } | 60 } |
65 ] | 61 ] |
OLD | NEW |