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

Unified Diff: tools/code_coverage/coverage_posix.py

Issue 10837246: Skipping few failing tests from gpu_tests, performance_ui_tests and sync_integration_tests on cover… (Closed) Base URL: https://src.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/code_coverage/coverage_posix.py
===================================================================
--- tools/code_coverage/coverage_posix.py (revision 151257)
+++ tools/code_coverage/coverage_posix.py (working copy)
@@ -137,24 +137,94 @@
StartupBrowserCreatorTest.OpenAppShortcutPanel: Fails on coverage bot.
FilePathWatcherTest.Callback: Fails with error 'Unable to terminate
process group' in process_util_posix.cc.
+ WebGLConformanceTests.conformance_attribs_gl_enable_vertex_attrib: Fails
+ with timeout (45000 ms) exceeded error.
+ WebGLConformanceTests.conformance_attribs_gl_disabled_vertex_attrib:
+ ditto.
+ WebGLConformanceTests.conformance_attribs_gl_vertex_attrib_zero_issues:
+ ditto.
+ WebGLConformanceTests.conformance_attribs_gl_vertex_attrib: ditto.
+ WebGLConformanceTests.conformance_attribs_gl_vertexattribpointer_offsets:
+ ditto.
+ WebGLConformanceTests.conformance_attribs_gl_vertexattribpointer: ditto.
+ WebGLConformanceTests.conformance_buffers_buffer_bind_test: After
+ disabling WebGLConformanceTests specified above, this test fails when run
+ on local machine.
+ WebGLConformanceTests.conformance_buffers_buffer_data_array_buffer: ditto.
+ WebGLConformanceTests.conformance_buffers_index_validation_copies_indices:
+ ditto.
+ WebGLConformanceTests.
+ conformance_buffers_index_validation_crash_with_buffer_sub_data: ditto.
+ WebGLConformanceTests.
+ conformance_buffers_index_validation_verifies_too_many_indices: ditto.
+ WebGLConformanceTests.
+ conformance_buffers_index_validation_with_resized_buffer: ditto.
+ PageCycler*.*: Fails on coverage bot with "Missing test directory
+ /....../slave/coverage-dbg-linux/build/src/data/page_cycler/moz" error.
+ *FrameRateCompositingTest.*: Fails with
+ "FATAL:chrome_content_browser_client.cc(893)] Check failed:
+ command_line->HasSwitch(switches::kEnableStatsTable)."
+ *FrameRateNoVsyncCanvasInternalTest.*: ditto.
+ *FrameRateGpuCanvasInternalTest.*: ditto.
+ TwoClientPasswordsSyncTest.DeleteAll: Fails on coverage bot.
+ MigrationTwoClientTest.MigrationHellWithoutNigori: Fails with timeout
+ (45000 ms) exceeded error.
+ TwoClientSessionsSyncTest.DeleteActiveSession: ditto.
+ MultipleClientSessionsSyncTest.EncryptedAndChanged: ditto.
+ MigrationSingleClientTest.AllTypesIndividuallyTriggerNotification: ditto.
"""
gTestExclusions = {
'darwin2': { 'base_unittests': ('ProcessUtilTest.SpawnChild',),
'ipc_tests': ('IPCFuzzingTest.MsgBadPayloadArgs',), },
- 'linux2': { 'browser_tests':
- ('*FullscreenControllerTest.*',
- '*PageCyclerCachedBrowserTest.*',
- '*FullscreenControllerBrowserTest.*',
- 'PPAPITest.Fullscreen',
- 'OutOfProcessPPAPITest.Fullscreen',
- 'IndexedDBLayoutTest.RegressionTests',
- 'PanelBrowserNavigatorTest.NavigateFromCrashedPanel',
- 'StartupBrowserCreatorTest.OpenAppShortcutPanel',
- 'FilePathWatcherTest.Callback',), },
+ 'linux2': {
+ 'browser_tests':
+ ('*FullscreenControllerTest.*',
+ '*PageCyclerCachedBrowserTest.*',
+ '*FullscreenControllerBrowserTest.*',
+ 'PPAPITest.Fullscreen',
+ 'OutOfProcessPPAPITest.Fullscreen',
+ 'IndexedDBLayoutTest.RegressionTests',
+ 'PanelBrowserNavigatorTest.NavigateFromCrashedPanel',
+ 'StartupBrowserCreatorTest.OpenAppShortcutPanel',
+ 'FilePathWatcherTest.Callback',),
+ 'gpu_tests':
+ ('WebGLConformanceTests.conformance_attribs_gl_enable_vertex_attrib',
+ 'WebGLConformanceTests.'
+ 'conformance_attribs_gl_disabled_vertex_attrib',
+ 'WebGLConformanceTests.'
+ 'conformance_attribs_gl_vertex_attrib_zero_issues',
+ 'WebGLConformanceTests.conformance_attribs_gl_vertex_attrib',
+ 'WebGLConformanceTests.'
+ 'conformance_attribs_gl_vertexattribpointer_offsets',
+ 'WebGLConformanceTests.conformance_attribs_gl_vertexattribpointer',
+ 'WebGLConformanceTests.conformance_buffers_buffer_bind_test',
+ 'WebGLConformanceTests.'
+ 'conformance_buffers_buffer_data_array_buffer',
+ 'WebGLConformanceTests.'
+ 'conformance_buffers_index_validation_copies_indices',
+ 'WebGLConformanceTests.'
+ 'conformance_buffers_index_validation_crash_with_buffer_sub_data',
+ 'WebGLConformanceTests.'
+ 'conformance_buffers_index_validation_verifies_too_many_indices',
+ 'WebGLConformanceTests.'
+ 'conformance_buffers_index_validation_with_resized_buffer',),
+ 'performance_ui_tests':
+ ('*PageCycler*.*',
+ '*FrameRateCompositingTest.*',
+ '*FrameRateNoVsyncCanvasInternalTest.*',
+ '*FrameRateGpuCanvasInternalTest.*',),
+ 'sync_integration_tests':
+ ('TwoClientPasswordsSyncTest.DeleteAll',
+ 'MigrationTwoClientTest.MigrationHellWithoutNigori',
+ 'TwoClientSessionsSyncTest.DeleteActiveSession',
+ 'MultipleClientSessionsSyncTest.EncryptedAndChanged',
+ 'MigrationSingleClientTest.'
+ 'AllTypesIndividuallyTriggerNotification',), },
}
Nirnimesh 2012/08/14 23:31:56 remove
pshenoy 2012/08/14 23:35:40 Done.
+
def TerminateSignalHandler(sig, stack):
"""When killed, try and kill our child processes."""
signal.signal(sig, signal.SIG_DFL)
« 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