Skip to content

Commit 41c6dfb

Browse files
Per issue 125757, added more test cases to be monitored in the layout test anazlyzer. Also, changed CSV format to use double quotations for seperators instead of commas.
BUG=125757 TEST=make sure layout analzyer runs with new test cases Review URL: https://chromiumcodereview.appspot.com/10261034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@135246 0039d316-1c4b-4281-b951-d872f2087c98
1 parent ee402a4 commit 41c6dfb

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

media/tools/layout_tests/layouttest_analyzer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ def GetCurrentAndPreviousResults(debug, test_group_file_location,
143143
test_group_file_location)
144144
parent_location_list = (
145145
layouttests.LayoutTests.GetParentDirectoryList(filter_names))
146-
recursion = False
146+
recursion = True
147147
else:
148148
# When test group CSV file is not specified, test group name
149149
# (e.g., 'media') is used for getting layout tests.

media/tools/layout_tests/layouttests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def GetLayoutTestNamesFromSVN(parent_location_list,
172172
file_name = file_name[0].repos_path.encode(default_encoding)
173173
# Remove the word '/truck/LayoutTests'.
174174
file_name = file_name.replace('/trunk/LayoutTests/', '')
175-
if file_name.endswith('.html') or file_name.endswith('.svg'):
175+
if file_name.endswith('.html'):
176176
name_map[file_name] = True
177177
return name_map
178178

media/tools/layout_tests/testname/media.csv

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
http/tests/media/\S+.html,
2-
media/\S+.html,
3-
media/track/\S+.html,
4-
http/tests/security/\S+video\S+.html,
5-
fast/layers/video-layer.html,
61
compositing/geometry/clipped-video-controller.html,
72
compositing/geometry/video-fixed-scrolling.html,
83
compositing/geometry/video-opacity-overlay.html,
@@ -18,8 +13,14 @@ fast/canvas/webgl/tex-image-and-sub-image-2d-with-video.html,
1813
fast/dom/beforeload/remove-video-in-beforeload-listener.html,
1914
fast/dom/beforeload/video-before-load.html,
2015
fast/dom/shadow/frameless-media-element-crash.html,
16+
fast/events/constructors/media-key-event-constructor.html,
17+
fast/events/constructors/track-event-constructor.html,
18+
fast/layers/video-layer.html,
2119
http/tests/appcache/video.html,
2220
http/tests/canvas/webgl/origin-clean-conformance.html,
21+
http/tests/media/,
22+
http/tests/security/\S+video\S+.html,
2323
http/tests/security/contentSecurityPolicy/media-src-allowed.html,
2424
http/tests/security/contentSecurityPolicy/media-src-blocked.html,
25-
platform/chromium/media/\S+.html,
25+
media/,
26+
platform/chromium/media/,

0 commit comments

Comments
 (0)