From cae0ac94532e74d07200bcbb2503974435dae083 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Thu, 12 Mar 2020 02:27:13 +0100 Subject: [PATCH] Do not run any test by default --- project.conf | 2 +- tests/project.conf | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/project.conf b/project.conf index e611cbc..ff27b97 100644 --- a/project.conf +++ b/project.conf @@ -9,7 +9,7 @@ targets=tests #targets [tests] type=command -command=cd tests && (if [ -n "$(OBJDIR)" ]; then $(MAKE) OBJDIR="$(OBJDIR)tests/" "$(OBJDIR)tests/fixme.log"; else $(MAKE) fixme.log; fi) +command=cd tests && (if [ -n "$(OBJDIR)" ]; then $(MAKE) OBJDIR="$(OBJDIR)tests/" "$(OBJDIR)tests/fixme.log" "$(OBJDIR)tests/shlint.log" "$(OBJDIR)tests/tests.log"; else $(MAKE) fixme.log shlint.log tests.log; fi) depends=all enabled=0 phony=1 diff --git a/tests/project.conf b/tests/project.conf index 2e52f30..cbb3e23 100644 --- a/tests/project.conf +++ b/tests/project.conf @@ -56,11 +56,13 @@ sources=lookup.c type=script script=./shlint.sh depends=$(OBJDIR)../src/libApp.a,shlint.sh +enabled=0 [tests.log] type=script script=./tests.sh depends=Test.expected,Test.interface,$(OBJDIR)AppBroker$(EXEEXT),appbroker.sh,$(OBJDIR)appclient$(EXEEXT),$(OBJDIR)appmessage$(EXEEXT),$(OBJDIR)appserver$(EXEEXT),$(OBJDIR)includes$(EXEEXT),$(OBJDIR)lookup$(EXEEXT),pkgconfig.sh,tests.sh,$(OBJDIR)transport$(EXEEXT),../src/transport/tcp.c,../src/transport/udp.c +enabled=0 [transport] type=binary