aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2023-05-24 21:14:47 +0200
committerGitHub <noreply@github.com>2023-05-24 21:14:47 +0200
commitebb10d624825468c1f75bd14725cce500974b673 (patch)
tree66183e99cd6ccc8bab847faa2642e7b52c92960a /test
parent678548a2b44601db73cc7d049467abd2b433baae (diff)
downloadrneovim-ebb10d624825468c1f75bd14725cce500974b673.tar.gz
rneovim-ebb10d624825468c1f75bd14725cce500974b673.tar.bz2
rneovim-ebb10d624825468c1f75bd14725cce500974b673.zip
build: remove functionaltest-lua target
It's not needed anymore as it does the exact same thing as functionaltest. The functionaltest target will test the lua type neovim was built with, which can be toggled with the PREFER_LUA option.
Diffstat (limited to 'test')
-rw-r--r--test/CMakeLists.txt16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index ef1497febc..77fe7b3b82 100644
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -66,21 +66,5 @@ add_custom_target(benchmark
DEPENDS ${BENCHMARK_PREREQS}
USES_TERMINAL)
-add_custom_target(functionaltest-lua
- COMMAND ${CMAKE_COMMAND}
- -D NVIM_PRG=$<TARGET_FILE:nvim>
- -D WORKING_DIR=${PROJECT_SOURCE_DIR}
- -D BUSTED_OUTPUT_TYPE=${BUSTED_OUTPUT_TYPE}
- -D TEST_DIR=${CMAKE_CURRENT_SOURCE_DIR}
- -D BUILD_DIR=${CMAKE_BINARY_DIR}
- -D DEPS_INSTALL_DIR=${DEPS_INSTALL_DIR}
- -D TEST_TYPE=functional
- -D CIRRUS_CI=$ENV{CIRRUS_CI}
- -D CI_BUILD=${CI_BUILD}
- -P ${PROJECT_SOURCE_DIR}/cmake/RunTests.cmake
- DEPENDS ${FUNCTIONALTEST_PREREQS}
- USES_TERMINAL)
-
add_dependencies(functionaltest test_deps)
add_dependencies(benchmark test_deps)
-add_dependencies(functionaltest-lua test_deps)