diff options
author | Daniel Hahler <git@thequod.de> | 2019-07-16 22:02:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-16 22:02:50 +0200 |
commit | 34c6e5beaf1f02b5291fcdc27e320cda72720ad4 (patch) | |
tree | 5e0372e2d5e7801477187eb9b8121ecb80c82cb8 /cmake | |
parent | 3a1d3e9ef1d34e4e6d499aad0968c6f7daf0fd9d (diff) | |
download | rneovim-34c6e5beaf1f02b5291fcdc27e320cda72720ad4.tar.gz rneovim-34c6e5beaf1f02b5291fcdc27e320cda72720ad4.tar.bz2 rneovim-34c6e5beaf1f02b5291fcdc27e320cda72720ad4.zip |
tests: move "busted" dir to "test" (#10518)
* tests: move "busted" dir to "test"
It is used for outputHandlers only, and clearly belongs to the tests.
Use the full module name with the `-o` option to `busted` then for
clarity.
* luacheck
* test/busted/outputHandlers/TAP.lua: use/extend upstream
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/RunTests.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/RunTests.cmake b/cmake/RunTests.cmake index f5b3f01778..5406a07fc8 100644 --- a/cmake/RunTests.cmake +++ b/cmake/RunTests.cmake @@ -43,7 +43,7 @@ execute_process(COMMAND ${CMAKE_COMMAND} -E make_directory $ENV{TMPDIR}) set(ENV{SYSTEM_NAME} ${CMAKE_HOST_SYSTEM_NAME}) # used by test/helpers.lua. execute_process( - COMMAND ${BUSTED_PRG} -v -o ${BUSTED_OUTPUT_TYPE} + COMMAND ${BUSTED_PRG} -v -o test.busted.outputHandlers.${BUSTED_OUTPUT_TYPE} --lazy --helper=${TEST_DIR}/${TEST_TYPE}/preload.lua --lpath=${BUILD_DIR}/?.lua --lpath=${WORKING_DIR}/runtime/lua/?.lua |