diff options
author | Jan Tattermusch <jtattermusch@users.noreply.github.com> | 2016-04-05 15:10:00 -0700 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@users.noreply.github.com> | 2016-04-05 15:10:00 -0700 |
commit | 182de56ae7297d0ff40f80cac793c5a5f1f04c36 (patch) | |
tree | 8768f14144bbb16ef182a0eed1a4218c2cce1b8a /tools/run_tests/performance | |
parent | abb4f5f3ab911d0b0c5bc7d76c27592a1656bd12 (diff) | |
parent | eff9cf0d6794203b17d17d129a311ccf9fb9c33f (diff) |
Merge pull request #6082 from jtattermusch/csharp_perfworker_features
Add some C# qps worker features
Diffstat (limited to 'tools/run_tests/performance')
-rwxr-xr-x | tools/run_tests/performance/build_performance.sh | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/tools/run_tests/performance/build_performance.sh b/tools/run_tests/performance/build_performance.sh index e5c0f86369..b33ee3a58c 100755 --- a/tools/run_tests/performance/build_performance.sh +++ b/tools/run_tests/performance/build_performance.sh @@ -36,16 +36,17 @@ cd $(dirname $0)/../../.. CONFIG=${CONFIG:-opt} +# build C++ qps worker & driver always - we need at least the driver to +# run any of the scenarios. +# TODO(jtattermusch): not embedding OpenSSL breaks the C# build because +# grpc_csharp_ext needs OpenSSL embedded and some intermediate files from +# this build will be reused. +make CONFIG=${CONFIG} EMBED_OPENSSL=true EMBED_ZLIB=true qps_worker qps_driver -j8 + for language in $@ do - if [ "$language" == "c++" ] + if [ "$language" != "c++" ] then - # build C++ qps worker & driver - # TODO(jtattermusch): not embedding OpenSSL breaks the C# build because - # grpc_csharp_ext needs OpenSSL embedded and some intermediate files from - # this build will be reused. - make CONFIG=${CONFIG} EMBED_OPENSSL=true EMBED_ZLIB=true qps_worker qps_driver -j8 - else tools/run_tests/run_tests.py -l $language -c $CONFIG --build_only -j 8 fi done |