| 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 # TODO(sky): reenable once 531120 is fixed. | 59 { |
| 60 # { | 60 'test': 'mojo:html_viewer_apptests', |
| 61 # 'test': 'mojo:html_viewer_apptests', | 61 'name': 'mojo:html_viewer_apptests', |
| 62 # 'name': 'mojo:html_viewer_apptests', | 62 'type': 'gtest_isolated', |
| 63 # 'type': 'gtest_isolated', | 63 'args': ['--enable-html-viewer-test-interface', |
| 64 # 'args': ['--enable-html-viewer-test-interface', | 64 '--use-x11-test-config', |
| 65 # '--use-x11-test-config', | 65 '--override-use-gl-with-osmesa-for-tests'] |
| 66 # '--override-use-gl-with-osmesa-for-tests'] | 66 }, |
| 67 # }, | 67 { |
| 68 # { | 68 'test': 'mojo:html_viewer_apptests', |
| 69 # 'test': 'mojo:html_viewer_apptests', | 69 'name': 'mojo:html_viewer_apptests new frame', |
| 70 # 'name': 'mojo:html_viewer_apptests new frame', | 70 'type': 'gtest_isolated', |
| 71 # 'type': 'gtest_isolated', | 71 'args': ['--oopif-always-create-new-frame-tree', |
| 72 # 'args': ['--oopif-always-create-new-frame-tree', | 72 '--enable-html-viewer-test-interface', |
| 73 # '--enable-html-viewer-test-interface', | 73 '--use-x11-test-config', |
| 74 # '--use-x11-test-config', | 74 '--override-use-gl-with-osmesa-for-tests'] |
| 75 # '--override-use-gl-with-osmesa-for-tests'] | 75 }, |
| 76 # }, | |
| 77 # TODO(ben): These tests are disabled pending mandoline:browser refactoring. | 76 # TODO(ben): These tests are disabled pending mandoline:browser refactoring. |
| 78 #{ | 77 #{ |
| 79 # 'test': 'mojo:mandoline_browser_apptests', | 78 # 'test': 'mojo:mandoline_browser_apptests', |
| 80 # 'type': 'gtest_isolated', | 79 # 'type': 'gtest_isolated', |
| 81 # 'args': ['--use-headless-config'] | 80 # 'args': ['--use-headless-config'] |
| 82 #}, | 81 #}, |
| 83 # TODO(xhwang): Fix and enable mojo:media_pipeline_integration_apptests. | 82 # TODO(xhwang): Fix and enable mojo:media_pipeline_integration_apptests. |
| 84 # http://crbug.com/501417 | 83 # http://crbug.com/501417 |
| 85 { | 84 { |
| 86 'test': 'mojo:media_apptests', | 85 'test': 'mojo:media_apptests', |
| 87 'type': 'gtest_isolated', | 86 'type': 'gtest_isolated', |
| 88 }, | 87 }, |
| 89 { | 88 { |
| 90 'test': 'mojo:sql_apptests', | 89 'test': 'mojo:sql_apptests', |
| 91 'type': 'gtest_isolated', | 90 'type': 'gtest_isolated', |
| 92 }, | 91 }, |
| 93 { | 92 { |
| 94 'test': 'mojo:web_view_apptests', | 93 'test': 'mojo:web_view_apptests', |
| 95 'type': 'gtest_isolated', | 94 'type': 'gtest_isolated', |
| 96 'args': ['--use-x11-test-config', | 95 'args': ['--use-x11-test-config', |
| 97 '--override-use-gl-with-osmesa-for-tests'] | 96 '--override-use-gl-with-osmesa-for-tests'] |
| 98 }, | 97 }, |
| 99 ] | 98 ] |
| OLD | NEW |