| Index: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/test_configuration.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/test_configuration.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/test_configuration.py
|
| index 6d623296974ed79b1dbb12d8da8685ed7415935e..cfe97176737cc41738dc932fa5e5aa70e7b70c0a 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/test_configuration.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/test_configuration.py
|
| @@ -294,7 +294,8 @@ class TestConfigurationConverter(object):
|
| macro_keys = set(self._configuration_macros.keys())
|
|
|
| # 5) Collapsing macros may have created combinations the can now be abbreviated.
|
| - # (win7, release), (linux, x86, release), (linux, x86_64, release) --> (win7, release), (linux, release) --> (win7, linux, release)
|
| + # (win7, release), (linux, x86, release), (linux, x86_64, release)
|
| + # --> (win7, release), (linux, release) --> (win7, linux, release)
|
| while try_abbreviating([self._collapsing_sets_by_category['version'] | macro_keys]):
|
| pass
|
|
|
|
|