diff options
author | Jan Tattermusch <jtattermusch@google.com> | 2017-04-24 12:56:26 +0200 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@google.com> | 2017-04-24 14:22:30 +0200 |
commit | 1dd609b3c1a3ebb74cd0410d425ace362c66c964 (patch) | |
tree | fdcefc3eb223281172f2d42c91b742990c43c389 /test/distrib | |
parent | 7e0e18d21e996c1bed242bca8eacb559527f95e3 (diff) |
fix C++ distribtests
Diffstat (limited to 'test/distrib')
-rwxr-xr-x | test/distrib/cpp/run_distrib_test.sh | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/test/distrib/cpp/run_distrib_test.sh b/test/distrib/cpp/run_distrib_test.sh index 15fbf28107..4728e32f06 100755 --- a/test/distrib/cpp/run_distrib_test.sh +++ b/test/distrib/cpp/run_distrib_test.sh @@ -30,13 +30,8 @@ set -ex -git clone $EXTERNAL_GIT_ROOT -# clone gRPC submodules, use data from locally cloned submodules where possible -(cd ${EXTERNAL_GIT_ROOT} && git submodule foreach 'cd /var/local/git/grpc \ -&& git submodule update --init --reference ${EXTERNAL_GIT_ROOT}/${name} \ -${name}') - -cd grpc +# change to grpc repo root +cd $(dirname $0)/../../.. cd third_party/protobuf && ./autogen.sh && \ ./configure && make -j4 && make check && make install && ldconfig |