aboutsummaryrefslogtreecommitdiff
path: root/tests.sh
diff options
context:
space:
mode:
authorBo Yang <teboring@google.com>2016-09-20 23:34:05 +0000
committerBo Yang <teboring@google.com>2016-09-20 23:54:13 +0000
commit22d7248c973470d15408c88578a4c1806b181bfe (patch)
tree78772d3d0085dd98e55b25d6b3d71e30fda72fc6 /tests.sh
parent6cb6bd9f213a7610ff180dbac7226a22a9f71867 (diff)
downloadprotobuf-22d7248c973470d15408c88578a4c1806b181bfe.tar.gz
protobuf-22d7248c973470d15408c88578a4c1806b181bfe.tar.bz2
protobuf-22d7248c973470d15408c88578a4c1806b181bfe.zip
Fix bugs for internal integration.
Diffstat (limited to 'tests.sh')
-rwxr-xr-xtests.sh8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests.sh b/tests.sh
index 9e95f2b7..2249f550 100755
--- a/tests.sh
+++ b/tests.sh
@@ -35,10 +35,14 @@ internal_build_cpp() {
build_cpp() {
internal_build_cpp
make check -j2
- cd conformance && make test_cpp && cd ..
+ pushd conformance
+ make test_cpp
+ popd
# Verify benchmarking code can build successfully.
- cd benchmarks && make && ./generate-datasets && cd ..
+ pushd benchmarks
+ make && ./generate-datasets
+ popd
}
build_cpp_distcheck() {