summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPrashanth Chandra <coolshanth94@gmail.com>2016-10-12 19:25:53 +0800
committerPrashanth Chandra <coolshanth94@gmail.com>2016-10-12 20:13:34 +0800
commit9a0a663dc15c1926cefe582c2dfc7e519b33fc1a (patch)
tree6167f203d9d5f239e40efa670c0b39475abf59a6 /Makefile
parent210d464442eb16c4450816307b5f52c7c6994913 (diff)
downloadale-9a0a663dc15c1926cefe582c2dfc7e519b33fc1a.zip
Move vint to Docker
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 292f20bd..b0bbf3ee 100644
--- a/Makefile
+++ b/Makefile
@@ -7,8 +7,11 @@ test-setup:
test: test-setup
vims=$$(docker run --rm $(IMAGE) ls /vim-build/bin | grep -E '^n?vim'); \
if [ -z "$$vims" ]; then echo "No Vims found!"; exit 1; fi; \
+ EXIT=0; \
for vim in $$vims; do \
- $(DOCKER) $$vim '+Vader! test/*'; \
- done
+ $(DOCKER) $$vim '+Vader! test/*' || EXIT=$$?; \
+ done; \
+ $(DOCKER) vint -s /testplugin || EXIT=$$?; \
+ exit $$EXIT;
.PHONY: test-setup test