mirror of
https://github.com/neovim/neovim.git
synced 2024-12-23 20:55:18 -07:00
Merge pull request #1544 from jszakmeister/run-tests-error-code
build: print the error result when the tests fail
This commit is contained in:
commit
68fcd8b696
@ -22,5 +22,5 @@ execute_process(
|
||||
RESULT_VARIABLE res)
|
||||
|
||||
if(NOT res EQUAL 0)
|
||||
message(FATAL_ERROR "Generating helptags failed: ${err}")
|
||||
message(FATAL_ERROR "Generating helptags failed: ${err} - ${res}")
|
||||
endif()
|
||||
|
@ -20,5 +20,5 @@ execute_process(
|
||||
RESULT_VARIABLE res)
|
||||
|
||||
if(NOT res EQUAL 0)
|
||||
message(FATAL_ERROR "Running ${TEST_TYPE} tests failed.")
|
||||
message(FATAL_ERROR "Running ${TEST_TYPE} tests failed with error: ${res}.")
|
||||
endif()
|
||||
|
Loading…
Reference in New Issue
Block a user