diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-03-03 08:16:31 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-03-03 08:16:31 +0800 |
commit | 1495c4d166f65d172d8f298b5f9ed2fd86ef9931 (patch) | |
tree | df4ce4e52e20d7ee9e45c1d1f54015a2bb0948fb | |
parent | 85de9b06ed529ee60beb06c2e54b0c517463f28a (diff) | |
download | rneovim-1495c4d166f65d172d8f298b5f9ed2fd86ef9931.tar.gz rneovim-1495c4d166f65d172d8f298b5f9ed2fd86ef9931.tar.bz2 rneovim-1495c4d166f65d172d8f298b5f9ed2fd86ef9931.zip |
ci: show failed message on Windows
-rw-r--r-- | cmake/RunTests.cmake | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cmake/RunTests.cmake b/cmake/RunTests.cmake index 789131c26c..3adbcbbfc5 100644 --- a/cmake/RunTests.cmake +++ b/cmake/RunTests.cmake @@ -95,7 +95,5 @@ if(NOT res EQUAL 0) endif() endif() - IF (NOT WIN32) - message(FATAL_ERROR "${TEST_TYPE} tests failed with error: ${res}") - ENDIF() + message(FATAL_ERROR "${TEST_TYPE} tests failed with error: ${res}") endif() |