make buildtests on windows pass

pull/2068/head
Jan Tattermusch 10 years ago
parent 0d6cf992e8
commit 4b3f9522ec
  1. 3
      build.json
  2. 2
      test/core/end2end/gen_build_json.py
  3. 1
      tools/run_tests/tests.json

@ -1361,6 +1361,9 @@
"grpc",
"gpr_test_util",
"gpr"
],
"platforms": [
"posix"
]
},
{

@ -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())] + [
{

@ -353,7 +353,6 @@
"language": "c",
"name": "httpcli_test",
"platforms": [
"windows",
"posix"
]
},

Loading…
Cancel
Save