aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/buildgen
diff options
context:
space:
mode:
authorGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2015-08-07 02:56:13 +0200
committerGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2015-08-07 02:56:13 +0200
commit63323e3c07521e644a5d44a32849526a0bb20a13 (patch)
treedc96f058b595d4d26070d79d38639add3d04236c /tools/buildgen
parent83f8416f4ccaf1fa50d45f80124c72342244b7bd (diff)
Re-enabling tests that got culled off.
Diffstat (limited to 'tools/buildgen')
-rwxr-xr-xtools/buildgen/plugins/expand_bin_attrs.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/buildgen/plugins/expand_bin_attrs.py b/tools/buildgen/plugins/expand_bin_attrs.py
index 9c6c31e9a3..e35b9fe740 100755
--- a/tools/buildgen/plugins/expand_bin_attrs.py
+++ b/tools/buildgen/plugins/expand_bin_attrs.py
@@ -44,8 +44,9 @@ def mako_plugin(dictionary):
"""
targets = dictionary.get('targets')
+ default_platforms = ['windows', 'posix', 'linux', 'mac']
for tgt in targets:
tgt['flaky'] = tgt.get('flaky', False)
- tgt['platforms'] = sorted(tgt.get('platforms', ['windows', 'posix']))
+ tgt['platforms'] = sorted(tgt.get('platforms', default_platforms))