diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-01-24 15:24:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-24 15:24:15 +0100 |
commit | 51863b2d66bc5b2420a56959d0fcdbdb8a1e993e (patch) | |
tree | b4ed82584504975f32889bb3f45dedf757aad544 | |
parent | a293598a97340d7c465a67b6a09a3e5895ef624a (diff) | |
download | rneovim-51863b2d66bc5b2420a56959d0fcdbdb8a1e993e.tar.gz rneovim-51863b2d66bc5b2420a56959d0fcdbdb8a1e993e.tar.bz2 rneovim-51863b2d66bc5b2420a56959d0fcdbdb8a1e993e.zip |
build: remove tests for libtermkey (#21983)
The dependencies aren't set up properly meaning that this will cause a
failure on some systems such as void linux.
Closes https://github.com/neovim/neovim/issues/21982.
-rw-r--r-- | cmake.deps/cmake/libtermkeyCMakeLists.txt | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/cmake.deps/cmake/libtermkeyCMakeLists.txt b/cmake.deps/cmake/libtermkeyCMakeLists.txt index b419d38d7b..26c9d7730b 100644 --- a/cmake.deps/cmake/libtermkeyCMakeLists.txt +++ b/cmake.deps/cmake/libtermkeyCMakeLists.txt @@ -20,17 +20,4 @@ install(TARGETS termkey ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) -enable_testing() -file(GLOB TESTSOURCES "t/[0-9]*.c") -foreach(f ${TESTSOURCES}) - get_filename_component(t ${f} NAME_WE) - if(${t} STREQUAL 05read) - continue() - endif() - - add_executable("test_${t}" ${f} t/taplib.c) - target_link_libraries("test_${t}" termkey) - add_test("${t}" "test_${t}") -endforeach() - # vim: set ft=cmake: |