summaryrefslogtreecommitdiffstats
path: root/tools/code_coverage
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-03 18:39:04 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-03 18:39:04 +0000
commit6e23edbce20d371e9d7f34746471b47ca0651cc0 (patch)
treeb8c6c07436ceecc1dbf97f79bfd23cfed2b19a01 /tools/code_coverage
parenta3bc6b8f3cf50e0db39953d367f3161aa082f32e (diff)
downloadchromium_src-6e23edbce20d371e9d7f34746471b47ca0651cc0.zip
chromium_src-6e23edbce20d371e9d7f34746471b47ca0651cc0.tar.gz
chromium_src-6e23edbce20d371e9d7f34746471b47ca0651cc0.tar.bz2
Remove remaining references to test_shell_tests now that the bots have been updated.
BUG=126514 R=jochen@chromium.org Review URL: https://codereview.chromium.org/14841004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@198146 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/code_coverage')
-rwxr-xr-xtools/code_coverage/coverage.py9
1 files changed, 1 insertions, 8 deletions
diff --git a/tools/code_coverage/coverage.py b/tools/code_coverage/coverage.py
index 6e524ea..a1496d7 100755
--- a/tools/code_coverage/coverage.py
+++ b/tools/code_coverage/coverage.py
@@ -36,20 +36,16 @@ windows_binaries = [#'chrome.exe',
#'chrome.dll',
'unit_tests.exe',
'automated_ui_tests.exe',
- 'ui_tests.exe',
'installer_util_unittests.exe',
'ipc_tests.exe',
'memory_test.exe',
'page_cycler_tests.exe',
'perf_tests.exe',
- 'plugin_tests.exe',
'reliability_tests.exe',
'security_tests.dll',
'startup_tests.exe',
'tab_switching_test.exe',
- 'test_shell_tests.exe',
- 'test_shell.exe',
- 'activex_test_control.dll']
+ 'test_shell.exe']
# The list of [tests, args] that will be run.
# Failing tests have been commented out.
@@ -57,15 +53,12 @@ windows_binaries = [#'chrome.exe',
windows_tests = [
['unit_tests.exe', ''],
# ['automated_ui_tests.exe', ''],
- ['ui_tests.exe', '--no-sandbox'],
['installer_util_unittests.exe', ''],
['ipc_tests.exe', ''],
['page_cycler_tests.exe', '--gtest_filter=*File --no-sandbox'],
- ['plugin_tests.exe', '--no-sandbox'],
['reliability_tests.exe', '--no-sandbox'],
['startup_tests.exe', '--no-sandbox'],
['tab_switching_test.exe', '--no-sandbox'],
- ['test_shell_tests.exe', '']
]