| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 view_manager_apptests, | 49 view_manager_apptests, |
| 50 ] | 50 ] |
| 51 | 51 |
| 52 # TODO(msw): Get these tests passing on Android too. http://crbug.com/486220 | 52 # TODO(msw): Get these tests passing on Android too. http://crbug.com/486220 |
| 53 if config.target_os != config.OS_ANDROID: | 53 if config.target_os != config.OS_ANDROID: |
| 54 tests += [ | 54 tests += [ |
| 55 { | 55 { |
| 56 'test': 'mojo:filesystem_apptests', | 56 'test': 'mojo:filesystem_apptests', |
| 57 'type': 'gtest_isolated', | 57 'type': 'gtest_isolated', |
| 58 }, | 58 }, |
| 59 { | 59 # TODO(sky): reenable once 531120 is fixed. |
| 60 'test': 'mojo:html_viewer_apptests', | 60 # { |
| 61 'name': 'mojo:html_viewer_apptests', | 61 # 'test': 'mojo:html_viewer_apptests', |
| 62 'type': 'gtest_isolated', | 62 # 'name': 'mojo:html_viewer_apptests', |
| 63 'args': ['--enable-html-viewer-test-interface', | 63 # 'type': 'gtest_isolated', |
| 64 '--use-x11-test-config', | 64 # 'args': ['--enable-html-viewer-test-interface', |
| 65 '--override-use-gl-with-osmesa-for-tests'] | 65 # '--use-x11-test-config', |
| 66 }, | 66 # '--override-use-gl-with-osmesa-for-tests'] |
| 67 { | 67 # }, |
| 68 'test': 'mojo:html_viewer_apptests', | 68 # { |
| 69 'name': 'mojo:html_viewer_apptests new frame', | 69 # 'test': 'mojo:html_viewer_apptests', |
| 70 'type': 'gtest_isolated', | 70 # 'name': 'mojo:html_viewer_apptests new frame', |
| 71 'args': ['--oopif-always-create-new-frame-tree', | 71 # 'type': 'gtest_isolated', |
| 72 '--enable-html-viewer-test-interface', | 72 # 'args': ['--oopif-always-create-new-frame-tree', |
| 73 '--use-x11-test-config', | 73 # '--enable-html-viewer-test-interface', |
| 74 '--override-use-gl-with-osmesa-for-tests'] | 74 # '--use-x11-test-config', |
| 75 }, | 75 # '--override-use-gl-with-osmesa-for-tests'] |
| 76 # }, |
| 76 # TODO(ben): These tests are disabled pending mandoline:browser refactoring. | 77 # TODO(ben): These tests are disabled pending mandoline:browser refactoring. |
| 77 #{ | 78 #{ |
| 78 # 'test': 'mojo:mandoline_browser_apptests', | 79 # 'test': 'mojo:mandoline_browser_apptests', |
| 79 # 'type': 'gtest_isolated', | 80 # 'type': 'gtest_isolated', |
| 80 # 'args': ['--use-headless-config'] | 81 # 'args': ['--use-headless-config'] |
| 81 #}, | 82 #}, |
| 82 # TODO(xhwang): Fix and enable mojo:media_pipeline_integration_apptests. | 83 # TODO(xhwang): Fix and enable mojo:media_pipeline_integration_apptests. |
| 83 # http://crbug.com/501417 | 84 # http://crbug.com/501417 |
| 84 { | 85 { |
| 85 'test': 'mojo:media_apptests', | 86 'test': 'mojo:media_apptests', |
| 86 'type': 'gtest_isolated', | 87 'type': 'gtest_isolated', |
| 87 }, | 88 }, |
| 88 { | 89 { |
| 89 'test': 'mojo:sql_apptests', | 90 'test': 'mojo:sql_apptests', |
| 90 'type': 'gtest_isolated', | 91 'type': 'gtest_isolated', |
| 91 }, | 92 }, |
| 92 { | 93 { |
| 93 'test': 'mojo:web_view_apptests', | 94 'test': 'mojo:web_view_apptests', |
| 94 'type': 'gtest_isolated', | 95 'type': 'gtest_isolated', |
| 95 'args': ['--use-x11-test-config', | 96 'args': ['--use-x11-test-config', |
| 96 '--override-use-gl-with-osmesa-for-tests'] | 97 '--override-use-gl-with-osmesa-for-tests'] |
| 97 }, | 98 }, |
| 98 ] | 99 ] |
| OLD | NEW |