OLD | NEW |
(Empty) | |
| 1 """Configuration file for android gtest suites.""" |
| 2 |
| 3 # Add new suites here before upgrading them to the stable list below. |
| 4 EXPERIMENTAL_TEST_SUITES = [ |
| 5 'sandbox_linux_unittests', |
| 6 ] |
| 7 |
| 8 # Do not modify this list without approval of an android owner. |
| 9 # This list determines which suites are run by default, both for local |
| 10 # testing and on android trybots running on commit-queue. |
| 11 STABLE_TEST_SUITES = [ |
| 12 'base_unittests', |
| 13 'cc_unittests', |
| 14 'content_unittests', |
| 15 'gpu_unittests', |
| 16 'ipc_tests', |
| 17 'media_unittests', |
| 18 'net_unittests', |
| 19 'sql_unittests', |
| 20 'sync_unit_tests', |
| 21 'ui_unittests', |
| 22 'unit_tests', |
| 23 'webkit_compositor_bindings_unittests', |
| 24 'android_webview_unittests', |
| 25 ] |
OLD | NEW |