Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(262)

Side by Side Diff: build/android/pylib/gtest/gtest_config.py

Issue 12987003: Android: move sandbox_linux_unittests to stable tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Mark breakpad tests as stable as well. Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """Configuration file for android gtest suites.""" 5 """Configuration file for android gtest suites."""
6 6
7 import collections 7 import collections
8 8
9 9
10 Suite = collections.namedtuple('Suite', ['is_suite_exe', 'name']) 10 Suite = collections.namedtuple('Suite', ['is_suite_exe', 'name'])
11 Exe = lambda name : Suite(True, name) 11 Exe = lambda name : Suite(True, name)
12 Apk = lambda name : Suite(False, name) 12 Apk = lambda name : Suite(False, name)
13 13
14 14
15 # Add new suites here before upgrading them to the stable list below. 15 # Add new suites here before upgrading them to the stable list below.
16 EXPERIMENTAL_TEST_SUITES = [ 16 EXPERIMENTAL_TEST_SUITES = [
17 Exe('sandbox_linux_unittests'),
18 Exe('breakpad_unittests'),
19 ] 17 ]
20 18
21 # Do not modify this list without approval of an android owner. 19 # Do not modify this list without approval of an android owner.
22 # This list determines which suites are run by default, both for local 20 # This list determines which suites are run by default, both for local
23 # testing and on android trybots running on commit-queue. 21 # testing and on android trybots running on commit-queue.
24 STABLE_TEST_SUITES = [ 22 STABLE_TEST_SUITES = [
25 Apk('TestWebKitAPI'), 23 Apk('TestWebKitAPI'),
26 Apk('android_webview_unittests'), 24 Apk('android_webview_unittests'),
27 Apk('base_unittests'), 25 Apk('base_unittests'),
28 Apk('cc_unittests'), 26 Apk('cc_unittests'),
29 Apk('components_unittests'), 27 Apk('components_unittests'),
30 Apk('content_unittests'), 28 Apk('content_unittests'),
31 Apk('gpu_unittests'), 29 Apk('gpu_unittests'),
32 Apk('ipc_tests'), 30 Apk('ipc_tests'),
33 Apk('media_unittests'), 31 Apk('media_unittests'),
34 Apk('net_unittests'), 32 Apk('net_unittests'),
35 Apk('sql_unittests'), 33 Apk('sql_unittests'),
36 Apk('sync_unit_tests'), 34 Apk('sync_unit_tests'),
37 Apk('ui_unittests'), 35 Apk('ui_unittests'),
38 Apk('unit_tests'), 36 Apk('unit_tests'),
39 Apk('webkit_compositor_bindings_unittests'), 37 Apk('webkit_compositor_bindings_unittests'),
40 Apk('webkit_unit_tests'), 38 Apk('webkit_unit_tests'),
39 Exe('breakpad_unittests'),
40 Exe('sandbox_linux_unittests'),
41 ] 41 ]
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698