diff options
author | ZyX <kp-pav@yandex.ru> | 2014-06-14 19:41:29 +0400 |
---|---|---|
committer | John Szakmeister <john@szakmeister.net> | 2014-06-18 16:21:11 -0400 |
commit | 24a08b32ab1ef030607792409f7e801b9d388e82 (patch) | |
tree | f7e13e1bf604d13c370b5d387d58474ab2a16130 /src | |
parent | b0641510b6476c7e7cf0f27ddaa2925703f3d668 (diff) | |
download | rneovim-24a08b32ab1ef030607792409f7e801b9d388e82.tar.gz rneovim-24a08b32ab1ef030607792409f7e801b9d388e82.tar.bz2 rneovim-24a08b32ab1ef030607792409f7e801b9d388e82.zip |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
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 |