mirror of
https://github.com/neovim/neovim.git
synced 2025-10-06 18:06:30 +00:00
vim-patch:8.1.1490: when a single test fails the exit code is not set
Problem: When a single test fails the exit code is not set. (Daniel Hahler)
Solution: Add an exit command. (closes vim/vim#4506)
4e0bf84627
This commit is contained in:
@@ -118,10 +118,10 @@ fixff:
|
|||||||
$(NEW_TESTS):
|
$(NEW_TESTS):
|
||||||
rm -f $@.res test.log messages
|
rm -f $@.res test.log messages
|
||||||
$(MAKE) -f Makefile $@.res
|
$(MAKE) -f Makefile $@.res
|
||||||
@if test -f test.log; then \
|
|
||||||
cat test.log; \
|
|
||||||
fi
|
|
||||||
cat messages
|
cat messages
|
||||||
|
@if test -f test.log; then \
|
||||||
|
exit 1; \
|
||||||
|
fi
|
||||||
|
|
||||||
RM_ON_RUN := test.out X* viminfo
|
RM_ON_RUN := test.out X* viminfo
|
||||||
RM_ON_START := test.ok
|
RM_ON_START := test.ok
|
||||||
|
Reference in New Issue
Block a user