aboutsummaryrefslogtreecommitdiff
path: root/ci/common
diff options
context:
space:
mode:
authorDundar Göc <gocdundar@gmail.com>2022-03-05 18:07:46 +0100
committerDundar Göc <gocdundar@gmail.com>2022-03-10 09:21:41 +0100
commit815ba835a3486e103b0718e722c5cb5bf633a864 (patch)
treea71ab4a09579a79176997813390ec522726a827f /ci/common
parentd47714d87c0ea082568fb9f59a579381253bf179 (diff)
downloadrneovim-815ba835a3486e103b0718e722c5cb5bf633a864.tar.gz
rneovim-815ba835a3486e103b0718e722c5cb5bf633a864.tar.bz2
rneovim-815ba835a3486e103b0718e722c5cb5bf633a864.zip
ci: refactor and simplify CI process
Diffstat (limited to 'ci/common')
-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 3df24cf3b0..7db39a0e5f 100644
--- a/ci/common/test.sh
+++ b/ci/common/test.sh
@@ -86,7 +86,7 @@ check_sanitizer() {
fi
}
-run_unittests() {(
+unittests() {(
ulimit -c unlimited || true
if ! build_make unittest ; then
fail 'unittests' 'Unit tests failed'
@@ -95,7 +95,7 @@ run_unittests() {(
check_core_dumps "$(command -v luajit)"
)}
-run_functionaltests() {(
+functionaltests() {(
ulimit -c unlimited || true
if ! build_make ${FUNCTIONALTEST}; then
fail 'functionaltests' 'Functional tests failed'
@@ -106,7 +106,7 @@ run_functionaltests() {(
check_core_dumps
)}
-run_oldtests() {(
+oldtests() {(
ulimit -c unlimited || true
if ! make oldtest; then
reset