diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2016-12-22 12:51:35 +0100 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2016-12-22 12:51:35 +0100 |
| commit | 7001dd552613f087dfa857602b9da240295e2cfb (patch) | |
| tree | 387748fe3d3136cfbccb4c698cb64dbfd6c5e4f9 /core/Makefile | |
| parent | 9347ecbb29636c38fd9914e756d416f1d4b45978 (diff) | |
| download | vis-7001dd552613f087dfa857602b9da240295e2cfb.tar.gz vis-7001dd552613f087dfa857602b9da240295e2cfb.tar.xz | |
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 (limited to 'core/Makefile')
| -rw-r--r-- | core/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/Makefile b/core/Makefile index 3808725..9773846 100644 --- 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 |
