From 24a08b32ab1ef030607792409f7e801b9d388e82 Mon Sep 17 00:00:00 2001 From: ZyX Date: Sat, 14 Jun 2014 19:41:29 +0400 Subject: test1.in is not a test and it must be run always test1.in generates files like small.vim, tiny.vim, mbyte.vim, mzscheme.vim, lua.vim which are then used by other tests. So it must be run always. --- src/nvim/testdir/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/nvim/testdir/Makefile b/src/nvim/testdir/Makefile index 5582a9f159..c93706fce2 100644 --- a/src/nvim/testdir/Makefile +++ b/src/nvim/testdir/Makefile @@ -8,7 +8,7 @@ VIMPROG := ../../../build/bin/nvim SCRIPTS := test_autoformat_join.out \ test_eval.out \ - test1.out test2.out test3.out test4.out test5.out \ + test2.out test3.out test4.out test5.out \ test6.out test7.out test8.out test9.out test10.out \ test11.out test12.out test13.out test14.out test15.out \ test17.out test18.out test19.out test20.out \ @@ -80,7 +80,9 @@ report: echo ALL DONE; \ fi" -$(SCRIPTS) $(SCRIPTS_GUI): $(VIMPROG) +test1.out: $(VIMPROG) + +$(SCRIPTS) $(SCRIPTS_GUI): $(VIMPROG) test1.out RM_ON_RUN := test.out X* viminfo RM_ON_START := tiny.vim small.vim mbyte.vim mzscheme.vim lua.vim test.ok -- cgit