aboutsummaryrefslogtreecommitdiff
path: root/ci/common/test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ci/common/test.sh')
-rw-r--r--ci/common/test.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/ci/common/test.sh b/ci/common/test.sh
index 326ec162c3..03d85067be 100644
--- a/ci/common/test.sh
+++ b/ci/common/test.sh
@@ -90,7 +90,7 @@ check_sanitizer() {
unittests() {(
ulimit -c unlimited || true
- if ! build_make unittest ; then
+ if ! ninja -C "${BUILD_DIR}" unittest; then
fail 'unittests' 'Unit tests failed'
fi
submit_coverage unittest
@@ -99,7 +99,7 @@ unittests() {(
functionaltests() {(
ulimit -c unlimited || true
- if ! build_make "${FUNCTIONALTEST}"; then
+ if ! ninja -C "${BUILD_DIR}" "${FUNCTIONALTEST}"; then
fail 'functionaltests' 'Functional tests failed'
fi
submit_coverage functionaltest
@@ -140,7 +140,7 @@ check_runtime_files() {(
)}
install_nvim() {(
- if ! build_make install ; then
+ if ! ninja -C "${BUILD_DIR}" install; then
fail 'install' 'make install failed'
exit 1
fi