From 76afcbd8edb433075473751825d0ee33af16ddeb Mon Sep 17 00:00:00 2001 From: nick black Date: Sat, 8 Jan 2022 00:36:47 -0500 Subject: [PATCH] [CMake] don't run long binary input test --- CMakeLists.txt | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b41499ef1..98d97ce7e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -876,18 +876,13 @@ add_test( NAME input-devnull COMMAND sh -c "./notcurses-input -v < /dev/null" ) -# provide a binary file -add_test( - NAME input-binary - COMMAND sh -c "./notcurses-input -v < notcurses-input" -) # provide an ASCII file add_test( NAME input-text COMMAND sh -c "./notcurses-input < ${CMAKE_SOURCE_DIR}/COPYRIGHT" ) add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND} DEPENDS notcurses-input) -LIST(APPEND TESTBINS ncpp_build ncpp_build_exceptions input-devnull input-binary input-text) +LIST(APPEND TESTBINS ncpp_build ncpp_build_exceptions input-devnull input-text) endif() add_test( NAME sgr-direct