diff options
author | Nicolas Noble <nicolasnoble@users.noreply.github.com> | 2015-06-15 18:11:38 -0700 |
---|---|---|
committer | Nicolas Noble <nicolasnoble@users.noreply.github.com> | 2015-06-15 18:11:38 -0700 |
commit | ac366f9c2e3736815c4445baa4ad4745d2b0b511 (patch) | |
tree | 752a63be276068d0e8570dd77ab5284546a81756 /test | |
parent | 0d6cf992e8f840ae257c039f15fc045e9605090f (diff) | |
parent | 12e8a049e4d7b7f52baaf72604a093fdc3612120 (diff) |
Merge pull request #2068 from jtattermusch/c_only_run_passing_tests
only build unbroken tests in Windows run_tests.py
Diffstat (limited to 'test')
-rwxr-xr-x | test/core/end2end/gen_build_json.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/end2end/gen_build_json.py b/test/core/end2end/gen_build_json.py index fb13c7840c..f9a41a8fe0 100755 --- a/test/core/end2end/gen_build_json.py +++ b/test/core/end2end/gen_build_json.py @@ -101,7 +101,7 @@ def main(): 'language': 'c', 'secure': 'check' if END2END_FIXTURES[f].secure else 'no', 'src': ['test/core/end2end/fixtures/%s.c' % f], - 'platforms': [ 'posix' ] if f.endswith('_posix') else [ 'windows', 'posix' ], + 'platforms': [ 'posix' ] if f.endswith('_posix') else END2END_FIXTURES[f].platforms, } for f in sorted(END2END_FIXTURES.keys())] + [ { |