comparison src/Makefile @ 15168:1cc5524d1081 v8.1.0594

patch 8.1.0594: libvterm tests fail to run on Mac commit https://github.com/vim/vim/commit/8b321d6a521e76c5cbe640272574e4fbd42cba9b Author: Bram Moolenaar <Bram@vim.org> Date: Sat Dec 15 15:39:28 2018 +0100 patch 8.1.0594: libvterm tests fail to run on Mac Problem: Libvterm tests fail to run on Mac. Solution: Only run libvterm tests on Linux.
author Bram Moolenaar <Bram@vim.org>
date Sat, 15 Dec 2018 15:45:05 +0100
parents 9d05de1ecc6f
children ce92157deb4e
comparison
equal deleted inserted replaced
15167:e958bbe5bf1b 15168:1cc5524d1081
2158 2158
2159 run_message_test: $(MESSAGE_TEST_TARGET) 2159 run_message_test: $(MESSAGE_TEST_TARGET)
2160 $(VALGRIND) ./$(MESSAGE_TEST_TARGET) || exit 1; echo $* passed; 2160 $(VALGRIND) ./$(MESSAGE_TEST_TARGET) || exit 1; echo $* passed;
2161 2161
2162 # Run the libvterm tests. 2162 # Run the libvterm tests.
2163 # This currently doesn't work on Mac, only run on Linux for now.
2163 test_libvterm: 2164 test_libvterm:
2164 cd libvterm; $(MAKE) -f Makefile test CC="$(CC)" 2165 @if test `uname` = "Linux"; then \
2166 cd libvterm; $(MAKE) -f Makefile test \
2167 CC="$(CC)" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)"; \
2168 fi
2165 2169
2166 # Run individual OLD style test. 2170 # Run individual OLD style test.
2167 # These do not depend on the executable, compile it when needed. 2171 # These do not depend on the executable, compile it when needed.
2168 test1 \ 2172 test1 \
2169 test_eval \ 2173 test_eval \