diff options
author | gwilson@google.com <gwilson@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-03 22:15:08 +0000 |
---|---|---|
committer | gwilson@google.com <gwilson@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-03 22:15:08 +0000 |
commit | c8eb6876f8fc4504f88d6f9db18067a4cefdff4e (patch) | |
tree | 446db15e062549f1d76e98edfbc8fcca1f4a6a04 /webkit | |
parent | b3481d96f72baf09c3d737ab85e218b77595d0dc (diff) | |
download | chromium_src-c8eb6876f8fc4504f88d6f9db18067a4cefdff4e.zip chromium_src-c8eb6876f8fc4504f88d6f9db18067a4cefdff4e.tar.gz chromium_src-c8eb6876f8fc4504f88d6f9db18067a4cefdff4e.tar.bz2 |
Changes the fallback order of Chromium win directories in the layout test formatter to (xp, vista, win7, win) to match changes in platform_utils_win.
R=ojan
BUG=none
TEST=run test_output_formatter.bat, the script should pull the correct baselines.
Review URL: http://codereview.chromium.org/341086
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30873 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/tools/layout_tests/layout_package/failure_finder.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/webkit/tools/layout_tests/layout_package/failure_finder.py b/webkit/tools/layout_tests/layout_package/failure_finder.py index 4f15659..0affba0 100644 --- a/webkit/tools/layout_tests/layout_package/failure_finder.py +++ b/webkit/tools/layout_tests/layout_package/failure_finder.py @@ -51,6 +51,7 @@ TEST_SHELL_CRASHED = "Test shell crashed" CHROMIUM_WIN = "chromium-win" CHROMIUM_WIN_XP = "chromium-win-xp" CHROMIUM_WIN_VISTA = "chromium-win-vista" +CHROMIUM_WIN_7 = "chromium-win-7" CHROMIUM_MAC = "chromium-mac" CHROMIUM_LINUX = "chromium-linux" PLATFORM = "platform" @@ -63,7 +64,8 @@ LAYOUTTESTS = "LayoutTests" WEBKIT_MAC_PLATFORM_DIRS = ["mac-leopard", "mac-snowleopard", "mac"] WEBKIT_WIN_PLATFORM_DIRS = ["win", "mac"] CHROMIUM_MAC_PLATFORM_DIRS = [CHROMIUM_MAC] -CHROMIUM_WIN_PLATFORM_DIRS = [CHROMIUM_WIN, CHROMIUM_WIN_XP, CHROMIUM_WIN_VISTA] +CHROMIUM_WIN_PLATFORM_DIRS = [CHROMIUM_WIN_XP, CHROMIUM_WIN_VISTA, + CHROMIUM_WIN_7, CHROMIUM_WIN] CHROMIUM_LINUX_PLATFORM_DIRS = [CHROMIUM_LINUX, CHROMIUM_WIN] ARCHIVE_URL_REGEX = "last.*change: (\d+)" |