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

Unified Diff: Tools/Scripts/webkitpy/layout_tests/port/base.py

Issue 1286373004: Treat win8 machines as win10 ports and remove baseline/specifier support. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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
Index: Tools/Scripts/webkitpy/layout_tests/port/base.py
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/base.py b/Tools/Scripts/webkitpy/layout_tests/port/base.py
index 4f756d39d7bca3e4bf8daf241529e4969a5e06d2..90264e96254c9da4090b4dd43c8a81ad48cb007f 100644
--- a/Tools/Scripts/webkitpy/layout_tests/port/base.py
+++ b/Tools/Scripts/webkitpy/layout_tests/port/base.py
@@ -105,7 +105,6 @@ class Port(object):
('yosemite', 'x86'),
('xp', 'x86'),
('win7', 'x86'),
- ('win8', 'x86'),
('win10', 'x86'),
# FIXME: We handle 32bit Linux similarly to Mac retina above treating it
# as a different system for now.
@@ -119,13 +118,13 @@ class Port(object):
ALL_BASELINE_VARIANTS = [
'mac-yosemite', 'mac-mavericks', 'mac-retina', 'mac-mountainlion', 'mac-lion', 'mac-snowleopard',
- 'win-win10', 'win-win8', 'win-win7', 'win-xp'
+ 'win-win10', 'win-win7', 'win-xp'
'linux-trusty', 'linux-precise', 'linux-x86',
]
CONFIGURATION_SPECIFIER_MACROS = {
'mac': ['snowleopard', 'lion', 'mountainlion', 'retina', 'mavericks', 'yosemite'],
- 'win': ['xp', 'win7', 'win8', 'win10'],
+ 'win': ['xp', 'win7', 'win10'],
'linux': ['linux32', 'precise', 'trusty'],
'android': ['icecreamsandwich'],
}
« no previous file with comments | « Tools/Scripts/webkitpy/layout_tests/models/test_expectations.py ('k') | Tools/Scripts/webkitpy/layout_tests/port/builders.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698