diff options
author | murgatroid99 <mlumish@google.com> | 2017-03-23 17:45:21 -0700 |
---|---|---|
committer | murgatroid99 <mlumish@google.com> | 2017-03-23 17:45:21 -0700 |
commit | fef391360cfb470355cb6ec00f247ccbd885ef0e (patch) | |
tree | 8302500901f1342f5c45c5df945d4a1e63fca101 /tools/run_tests/helper_scripts | |
parent | 6f1e443a519cd28d97be78c5ca2ca72a45f6b598 (diff) |
Node: explicitly define Release and Debug builds, use build flags from build.yaml
Diffstat (limited to 'tools/run_tests/helper_scripts')
-rwxr-xr-x | tools/run_tests/helper_scripts/build_node.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/run_tests/helper_scripts/build_node.sh b/tools/run_tests/helper_scripts/build_node.sh index df3acdac2b..2c4cf02d8f 100755 --- a/tools/run_tests/helper_scripts/build_node.sh +++ b/tools/run_tests/helper_scripts/build_node.sh @@ -41,7 +41,8 @@ CONFIG=${CONFIG:-opt} cd $(dirname $0)/../../.. case "$CONFIG" in - 'dbg') config_flag='--debug' ;; + 'dbg') config_flags='--debug' ;; + 'gcov') config_flags="--debug --grpc_gcov=true" ;; *) config_flag='--release' ;; esac |