| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 ] | 51 ] |
| 52 | 52 |
| 53 # TODO(msw): Get these tests passing on Android too. http://crbug.com/486220 | 53 # TODO(msw): Get these tests passing on Android too. http://crbug.com/486220 |
| 54 if config.target_os != config.OS_ANDROID: | 54 if config.target_os != config.OS_ANDROID: |
| 55 tests += [ | 55 tests += [ |
| 56 { | 56 { |
| 57 'test': 'mojo:filesystem_apptests', | 57 'test': 'mojo:filesystem_apptests', |
| 58 'type': 'gtest_isolated', | 58 'type': 'gtest_isolated', |
| 59 }, | 59 }, |
| 60 { | 60 { |
| 61 'test': 'mojo:html_viewer_apptests', | |
| 62 'name': 'mojo:html_viewer_apptests', | |
| 63 'type': 'gtest_isolated', | |
| 64 'args': ['--enable-html-viewer-test-interface', | |
| 65 '--use-x11-test-config', | |
| 66 '--override-use-gl-with-osmesa-for-tests'] | |
| 67 }, | |
| 68 { | |
| 69 'test': 'mojo:html_viewer_apptests', | |
| 70 'name': 'mojo:html_viewer_apptests new frame', | |
| 71 'type': 'gtest_isolated', | |
| 72 'args': ['--oopif-always-create-new-frame-tree', | |
| 73 '--enable-html-viewer-test-interface', | |
| 74 '--use-x11-test-config', | |
| 75 '--override-use-gl-with-osmesa-for-tests'] | |
| 76 }, | |
| 77 { | |
| 78 'test': 'mojo:mandoline_browser_apptests', | |
| 79 'type': 'gtest_isolated', | |
| 80 }, | |
| 81 { | |
| 82 'test': 'mojo:mash_wm_apptests', | 61 'test': 'mojo:mash_wm_apptests', |
| 83 'type': 'gtest_isolated', | 62 'type': 'gtest_isolated', |
| 84 'args': ['--use-x11-test-config', | 63 'args': ['--use-x11-test-config', |
| 85 '--override-use-gl-with-osmesa-for-tests'] | 64 '--override-use-gl-with-osmesa-for-tests'] |
| 86 }, | 65 }, |
| 87 { | 66 { |
| 88 'test': 'mojo:media_apptests', | 67 'test': 'mojo:media_apptests', |
| 89 'type': 'gtest_isolated', | 68 'type': 'gtest_isolated', |
| 90 }, | 69 }, |
| 91 { | 70 { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 105 'type': 'gtest_isolated', | 84 'type': 'gtest_isolated', |
| 106 }, | 85 }, |
| 107 # TODO(sky): enable when works (http://crbug.com/577274 and likely | 86 # TODO(sky): enable when works (http://crbug.com/577274 and likely |
| 108 # http://crbug.com/569367). | 87 # http://crbug.com/569367). |
| 109 # { | 88 # { |
| 110 # 'test': 'mojo:views_apptests', | 89 # 'test': 'mojo:views_apptests', |
| 111 # 'type': 'gtest_isolated', | 90 # 'type': 'gtest_isolated', |
| 112 # 'args': ['--use-x11-test-config', | 91 # 'args': ['--use-x11-test-config', |
| 113 # '--override-use-gl-with-osmesa-for-tests', '--enable-logging'] | 92 # '--override-use-gl-with-osmesa-for-tests', '--enable-logging'] |
| 114 # }, | 93 # }, |
| 115 { | |
| 116 'test': 'mojo:web_view_apptests', | |
| 117 'type': 'gtest_isolated', | |
| 118 'args': ['--use-x11-test-config', | |
| 119 '--override-use-gl-with-osmesa-for-tests'] | |
| 120 }, | |
| 121 ] | 94 ] |
| OLD | NEW |