comparison src/testdir/Makefile @ 4444:ccecb03e5e8b v7.3.970

updated for version 7.3.970 Problem: Syntax highlighting can be slow. Solution: Include the NFA regexp engine. Add the 'regexpengine' option to select which one is used. (various authors, including Ken Takata, Andrei Aiordachioaie, Russ Cox, Xiaozhou Liua, Ian Young)
author Bram Moolenaar <bram@vim.org>
date Sun, 19 May 2013 19:40:29 +0200
parents ff1f3e42df08
children 14e7a115d54d
comparison
equal deleted inserted replaced
4443:34f806b8147f 4444:ccecb03e5e8b
27 test69.out test70.out test71.out test72.out test73.out \ 27 test69.out test70.out test71.out test72.out test73.out \
28 test74.out test75.out test76.out test77.out test78.out \ 28 test74.out test75.out test76.out test77.out test78.out \
29 test79.out test80.out test81.out test82.out test83.out \ 29 test79.out test80.out test81.out test82.out test83.out \
30 test84.out test85.out test86.out test87.out test88.out \ 30 test84.out test85.out test86.out test87.out test88.out \
31 test89.out test90.out test91.out test92.out test93.out \ 31 test89.out test90.out test91.out test92.out test93.out \
32 test94.out 32 test94.out test95.out
33 33
34 SCRIPTS_GUI = test16.out 34 SCRIPTS_GUI = test16.out
35 35
36 .SUFFIXES: .in .out 36 .SUFFIXES: .in .out
37 37
83 $(RUN_VIM) $*.in; \ 83 $(RUN_VIM) $*.in; \
84 fi \ 84 fi \
85 fi" 85 fi"
86 86
87 # Check if the test.out file matches test.ok. 87 # Check if the test.out file matches test.ok.
88 @/bin/sh -c "if test -f test.out; then\ 88 @/bin/sh -c "if test -f test.out; then \
89 if diff test.out $*.ok; \ 89 if diff test.out $*.ok; \
90 then mv -f test.out $*.out; \ 90 then mv -f test.out $*.out; \
91 else echo $* FAILED >>test.log; mv -f test.out $*.failed; \ 91 else echo $* FAILED >>test.log; mv -f test.out $*.failed; \
92 fi \ 92 fi \
93 else echo $* NO OUTPUT >>test.log; \ 93 else echo $* NO OUTPUT >>test.log; \
94 fi"
95 @/bin/sh -c "if test -f valgrind; then\
96 mv -f valgrind valgrind.$*; \
94 fi" 97 fi"
95 -rm -rf X* test.ok viminfo 98 -rm -rf X* test.ok viminfo
96 99
97 test49.out: test49.vim 100 test49.out: test49.vim
98 101