aboutsummaryrefslogtreecommitdiff
path: root/tests.sh
diff options
context:
space:
mode:
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() {