vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit 48dda1a1215af28686bf35f3aa299e65778d593e parent 71434d6dc71579dba535bffd33ac85811e3c22fb Author: Marc André Tanner <mat@brain-dump.org> Date: Thu, 22 Dec 2016 12:51:35 +0100 test/core: reorder test cases Run text test cases last. They are the most complex ones and a failure prevents the others from running. Diffstat:
| M | core/Makefile | | | 6 | +++--- |
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/core/Makefile b/core/Makefile @@ -1,14 +1,14 @@ -include ../../config.mk -ALL = text buffer map array +ALL = buffer map array text SRC = $(wildcard ccan/*/*.c) CFLAGS += -I. -I../.. -DBUFFER_SIZE=4 -DBLOCK_SIZE=4 test: $(ALL) - @./text @./buffer @./map @./array + @./text config.h: @echo Generating ccan configuration header @@ -54,10 +54,10 @@ tis: clean clean: @echo cleaning - @rm -f text @rm -f buffer @rm -f map @rm -f array + @rm -f text @rm -f *.gcov *.gcda *.gcno @rm -f *.valgrind