| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  85       'test': 'mojo:media_apptests', |  85       'test': 'mojo:media_apptests', | 
|  86       'type': 'gtest_isolated', |  86       'type': 'gtest_isolated', | 
|  87     }, |  87     }, | 
|  88     { |  88     { | 
|  89       'test': 'mojo:sql_apptests', |  89       'test': 'mojo:sql_apptests', | 
|  90       'type': 'gtest_isolated', |  90       'type': 'gtest_isolated', | 
|  91     }, |  91     }, | 
|  92     { |  92     { | 
|  93       'test': 'mojo:web_view_apptests', |  93       'test': 'mojo:web_view_apptests', | 
|  94       'type': 'gtest_isolated', |  94       'type': 'gtest_isolated', | 
|  95       'args': ['--use-headless-config'] |  95       'args': ['--use-x11-test-config', | 
 |  96                '--override-use-gl-with-osmesa-for-tests'] | 
|  96     }, |  97     }, | 
|  97   ] |  98   ] | 
| OLD | NEW |