| OLD | NEW |
| (Empty) |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 """Configuration file for android gtest suites.""" | |
| 6 | |
| 7 # Add new suites here before upgrading them to the stable list below. | |
| 8 EXPERIMENTAL_TEST_SUITES = [ | |
| 9 'components_browsertests', | |
| 10 'content_gl_tests', | |
| 11 'heap_profiler_unittests', | |
| 12 'devtools_bridge_tests', | |
| 13 ] | |
| 14 | |
| 15 TELEMETRY_EXPERIMENTAL_TEST_SUITES = [ | |
| 16 'telemetry_unittests', | |
| 17 ] | |
| 18 | |
| 19 # Do not modify this list without approval of an android owner. | |
| 20 # This list determines which suites are run by default, both for local | |
| 21 # testing and on android trybots running on commit-queue. | |
| 22 STABLE_TEST_SUITES = [ | |
| 23 'android_webview_unittests', | |
| 24 'base_unittests', | |
| 25 'breakpad_unittests', | |
| 26 'cc_unittests', | |
| 27 'components_unittests', | |
| 28 'content_browsertests', | |
| 29 'content_unittests', | |
| 30 'events_unittests', | |
| 31 'gl_tests', | |
| 32 'gl_unittests', | |
| 33 'gpu_unittests', | |
| 34 'ipc_tests', | |
| 35 'media_unittests', | |
| 36 'midi_unittests', | |
| 37 'net_unittests', | |
| 38 'sandbox_linux_unittests', | |
| 39 'skia_unittests', | |
| 40 'sql_unittests', | |
| 41 'sync_unit_tests', | |
| 42 'ui_android_unittests', | |
| 43 'ui_base_unittests', | |
| 44 'ui_touch_selection_unittests', | |
| 45 'unit_tests', | |
| 46 'webkit_unit_tests', | |
| 47 ] | |
| 48 | |
| 49 # Tests fail in component=shared_library build, which is required for ASan. | |
| 50 # http://crbug.com/344868 | |
| 51 ASAN_EXCLUDED_TEST_SUITES = [ | |
| 52 'breakpad_unittests', | |
| 53 'sandbox_linux_unittests' | |
| 54 ] | |
| OLD | NEW |