diff options
author | Daniel Hahler <git@thequod.de> | 2019-10-18 16:32:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-18 16:32:56 +0200 |
commit | 84aa86afb7c58f6a769ec9215fa69dec19619f5f (patch) | |
tree | ec564d6a2dba2269f7e84ff33bd754fa27c29524 /CMakeLists.txt | |
parent | 4bbad5481773ac2a273a41a9fe8035ca57e03cd8 (diff) | |
download | rneovim-84aa86afb7c58f6a769ec9215fa69dec19619f5f.tar.gz rneovim-84aa86afb7c58f6a769ec9215fa69dec19619f5f.tar.bz2 rneovim-84aa86afb7c58f6a769ec9215fa69dec19619f5f.zip |
build: do not build test fixtures by default (#11230)
- tty-test is also used on Windows
- FUNCTIONALTEST_PREREQS: add printenv-test
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 98a32a116b..08447d5ff9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -562,10 +562,7 @@ if(BUSTED_PRG) endif() set(UNITTEST_PREREQS nvim-test unittest-headers) - set(FUNCTIONALTEST_PREREQS nvim printargs-test shell-test streams-test ${GENERATED_HELP_TAGS}) - if(NOT WIN32) - list(APPEND FUNCTIONALTEST_PREREQS tty-test) - endif() + set(FUNCTIONALTEST_PREREQS nvim printenv-test printargs-test shell-test streams-test tty-test ${GENERATED_HELP_TAGS}) set(BENCHMARK_PREREQS nvim tty-test) # Useful for automated build systems, if they want to manually run the tests. |