diff options
Diffstat (limited to 'ci/run_tests.sh')
-rwxr-xr-x | ci/run_tests.sh | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/ci/run_tests.sh b/ci/run_tests.sh new file mode 100755 index 0000000000..92cb5a9fd8 --- /dev/null +++ b/ci/run_tests.sh @@ -0,0 +1,34 @@ +#!/usr/bin/env bash + +set -e +set -o pipefail + +CI_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +source "${CI_DIR}/common/build.sh" +source "${CI_DIR}/common/test.sh" +source "${CI_DIR}/common/suite.sh" + +set -x + +enter_suite tests + +check_core_dumps --delete quiet + +prepare_build +build_nvim + +if [ "$CLANG_SANITIZER" != "TSAN" ]; then + # Additional threads are only created when the builtin UI starts, which + # doesn't happen in the unit/functional tests + run_test run_unittests + run_test run_functionaltests +fi +run_test run_oldtests + +run_test install_nvim + +if succeeded ; then + touch "${SUCCESS_MARKER}" +fi + +exit_suite |