| 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 if config.target_os != config.OS_ANDROID: | 49 if config.target_os != config.OS_ANDROID: |
| 50 tests += [ | 50 tests += [ |
| 51 { | 51 { |
| 52 'test': 'mojo:filesystem_apptests', | 52 'test': 'mojo:filesystem_apptests', |
| 53 'type': 'gtest_isolated', | 53 'type': 'gtest_isolated', |
| 54 }, | 54 }, |
| 55 { | 55 { |
| 56 'test': 'mojo:html_viewer_apptests', | 56 'test': 'mojo:html_viewer_apptests', |
| 57 'name': 'mojo:html_viewer_apptests', | 57 'name': 'mojo:html_viewer_apptests', |
| 58 'type': 'gtest_isolated', | 58 'type': 'gtest_isolated', |
| 59 'args': ['--use-test-config'] | 59 'args': ['--use-test-config', '--enable-html-viewer-test-interface'] |
| 60 }, | 60 }, |
| 61 { | 61 { |
| 62 'test': 'mojo:html_viewer_apptests', | 62 'test': 'mojo:html_viewer_apptests', |
| 63 'name': 'mojo:html_viewer_apptests OOPIFS', | 63 'name': 'mojo:html_viewer_apptests new frame', |
| 64 'type': 'gtest_isolated', | 64 'type': 'gtest_isolated', |
| 65 'args': ['--use-test-config', '--oopifs', | 65 'args': ['--use-test-config', '--oopif-always-create-new-frame-tree', |
| 66 '--enable-html-viewer-test-interface'] | 66 '--enable-html-viewer-test-interface'] |
| 67 }, | 67 }, |
| 68 { | 68 { |
| 69 'test': 'mojo:html_viewer_apptests', | |
| 70 'name': 'mojo:html_viewer_apptests OOPIFS new frame', | |
| 71 'type': 'gtest_isolated', | |
| 72 'args': ['--use-test-config', '--oopifs', | |
| 73 '--oopif-always-create-new-frame-tree', | |
| 74 '--enable-html-viewer-test-interface'] | |
| 75 }, | |
| 76 { | |
| 77 'test': 'mojo:mandoline_browser_apptests', | 69 'test': 'mojo:mandoline_browser_apptests', |
| 78 'type': 'gtest_isolated', | 70 'type': 'gtest_isolated', |
| 79 'args': ['--use-headless-config'] | 71 'args': ['--use-headless-config'] |
| 80 }, | 72 }, |
| 81 { | 73 { |
| 82 'test': 'mojo:mandoline_frame_apptests', | 74 'test': 'mojo:mandoline_frame_apptests', |
| 83 'type': 'gtest_isolated', | 75 'type': 'gtest_isolated', |
| 84 'args': ['--use-headless-config'] | 76 'args': ['--use-headless-config'] |
| 85 }, | 77 }, |
| 86 # TODO(xhwang): Fix and enable mojo:media_pipeline_integration_apptests. | 78 # TODO(xhwang): Fix and enable mojo:media_pipeline_integration_apptests. |
| 87 # http://crbug.com/501417 | 79 # http://crbug.com/501417 |
| 88 { | 80 { |
| 89 'test': 'mojo:media_apptests', | 81 'test': 'mojo:media_apptests', |
| 90 'type': 'gtest_isolated', | 82 'type': 'gtest_isolated', |
| 91 }, | 83 }, |
| 92 { | 84 { |
| 93 'test': 'mojo:sql_apptests', | 85 'test': 'mojo:sql_apptests', |
| 94 'type': 'gtest_isolated', | 86 'type': 'gtest_isolated', |
| 95 }, | 87 }, |
| 96 ] | 88 ] |
| OLD | NEW |