Skip to content

Commit

Permalink
Re-enabling tests that got culled off.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasnoble committed Aug 7, 2015
1 parent 83f8416 commit 63323e3
Show file tree
Hide file tree
Showing 2 changed files with 148 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/buildgen/plugins/expand_bin_attrs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))

Loading

0 comments on commit 63323e3

Please sign in to comment.