From 7001dd552613f087dfa857602b9da240295e2cfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Thu, 22 Dec 2016 12:51:35 +0100 Subject: test/core: reorder test cases Run text test cases last. They are the most complex ones and a failure prevents the others from running. --- core/Makefile | 6 +++--- 1 file 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 -- cgit v1.2.3