aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-09-24 08:52:00 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-09-24 08:52:00 -0700
commitc1385d6705bbf2ea57d6d322d2d62bda85685d7f (patch)
tree3a74aeb1085186249b4ce8035cd7615ad6859155 /tools
parentee56eb60c8aa0e36ac33b00fbd4e70a61412d2e4 (diff)
Fix (hackily) fling_stream_test under gyp
Diffstat (limited to 'tools')
-rwxr-xr-xtools/run_tests/run_tests.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py
index a1d0376a4f..e971aaf9c3 100755
--- a/tools/run_tests/run_tests.py
+++ b/tools/run_tests/run_tests.py
@@ -199,7 +199,9 @@ class GYPCLanguage(object):
return [['gyp', '--depth=.', '--suffix=-gyp', 'grpc.gyp']]
def make_targets(self):
- return gyp_test_paths(False)
+ # HACK(ctiller): force fling_client and fling_server to be built, as fling_test
+ # needs these
+ return gyp_test_paths(False) + ['fling_client', 'fling_server']
def build_steps(self):
return []