From d5904820aa3388961284b1b23d94e9c9a5fbcdc9 Mon Sep 17 00:00:00 2001 From: Craig Tiller Date: Mon, 31 Aug 2015 21:30:58 -0700 Subject: [PATCH] Windows tweak --- tools/run_tests/run_tests.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index 64900b62008..20abc7df1aa 100755 --- a/tools/run_tests/run_tests.py +++ b/tools/run_tests/run_tests.py @@ -281,7 +281,10 @@ class CSharpLanguage(object): def make_targets(self): # For Windows, this target doesn't really build anything, # everything is build by buildall script later. - return ['grpc_csharp_ext'] + if self.platform == 'windows': + return [] + else: + return ['grpc_csharp_ext'] def build_steps(self): if self.platform == 'windows':