Migrate testing to tcltest + expect

This commit is contained in:
Israel Chauca Fuentes
2017-04-12 15:58:49 -04:00
parent c4d51a21b3
commit 22e6272b1a
16 changed files with 634 additions and 605 deletions
+7 -3
View File
@@ -1,11 +1,15 @@
.DEFAULT: test
test_files := $(filter-out _setup.vim,$(wildcard test/*.vim))
test_files := $(wildcard test/*.test)
short_targets := $(patsubst test/%,%,$(test_files))
.PHONY: all test $(test_files)
.PHONY: monitor test $(test_files) $(short_targets)
test:
$(MAKE) -C test
$(test_files):
monitor:
$(MAKE) -C test monitor
$(test_files) $(short_targets):
$(MAKE) -C test $(patsubst test/%,%,$@)