| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  48     { |  48     { | 
|  49       "test": "mojo:filesystem_apptests", |  49       "test": "mojo:filesystem_apptests", | 
|  50       "type": "gtest_isolated", |  50       "type": "gtest_isolated", | 
|  51     }, |  51     }, | 
|  52     { |  52     { | 
|  53       "test": "mojo:html_viewer_apptests", |  53       "test": "mojo:html_viewer_apptests", | 
|  54       "type": "gtest_isolated", |  54       "type": "gtest_isolated", | 
|  55       "args": ["--use-test-config"] |  55       "args": ["--use-test-config"] | 
|  56     }, |  56     }, | 
|  57     { |  57     { | 
 |  58       "test": "mojo:mandoline_frame_apptests", | 
 |  59       "type": "gtest_isolated", | 
 |  60       "args": ["--use-headless-config"] | 
 |  61     }, | 
 |  62     { | 
|  58       "test": "mojo:resource_provider_apptests", |  63       "test": "mojo:resource_provider_apptests", | 
|  59       "type": "gtest_isolated", |  64       "type": "gtest_isolated", | 
|  60     }, |  65     }, | 
|  61     { |  66     { | 
|  62       "test": "mojo:mandoline_frame_apptests", |  67       "test": "mojo:sql_apptests", | 
|  63       "type": "gtest_isolated", |  68       "type": "gtest_isolated", | 
|  64       "args": ["--use-headless-config"] |  | 
|  65     }, |  69     }, | 
|  66     # TODO(xhwang): Fix and enable the media_apptests. http://crbug.com/501417 |  70     # TODO(xhwang): Fix and enable the media_apptests. http://crbug.com/501417 | 
|  67     #{ |  71     #{ | 
|  68     #  "test": "mojo:media_apptests", |  72     #  "test": "mojo:media_apptests", | 
|  69     #  "type": "gtest_isolated", |  73     #  "type": "gtest_isolated", | 
|  70     #}, |  74     #}, | 
|  71   ] |  75   ] | 
| OLD | NEW |