diff options
author | Daniel Hahler <git@thequod.de> | 2019-09-12 03:26:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-12 03:26:35 +0200 |
commit | 11fe132dd9c2e7d9613a24bf6f976557a924c3a2 (patch) | |
tree | def7e46a9d42ada3d38b18a307f83ffad826918c /CMakeLists.txt | |
parent | 108763171f6d26c098422925e58df585c415324f (diff) | |
download | rneovim-11fe132dd9c2e7d9613a24bf6f976557a924c3a2.tar.gz rneovim-11fe132dd9c2e7d9613a24bf6f976557a924c3a2.tar.bz2 rneovim-11fe132dd9c2e7d9613a24bf6f976557a924c3a2.zip |
tests: fix system_spec when run with clipboard manager (#10956)
* tests: move os_kill to functional helpers
* tests: fix system_spec when run with clipboard manager
Replaces "xclip" with a dedicated helper program.
Fixes: https://github.com/neovim/neovim/issues/4900#issuecomment-501866842
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 5fc589cc5f..b92b5473b2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -560,7 +560,7 @@ if(BUSTED_PRG) endif() set(UNITTEST_PREREQS nvim-test unittest-headers) - set(FUNCTIONALTEST_PREREQS nvim printargs-test shell-test ${GENERATED_HELP_TAGS}) + set(FUNCTIONALTEST_PREREQS nvim printargs-test shell-test streams-test ${GENERATED_HELP_TAGS}) if(NOT WIN32) list(APPEND FUNCTIONALTEST_PREREQS tty-test) endif() |