From 314f42d5f1971f1c97b082f77f35e3ee9f624987 Mon Sep 17 00:00:00 2001 From: Gautier Pelloux-Prayer Date: Thu, 29 Jan 2015 09:26:49 +0100 Subject: [PATCH] Keep verbosity for ant test --- tests/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Makefile b/tests/Makefile index 6f03268d3..0383a7073 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -17,9 +17,9 @@ all: clean $(ANT) debug install run-basic-tests: all - $(ANT) test -Dtest.size=small + ant -e test -Dtest.size=small if [ ! -s linphone-junit-report-small.xml ]; then exit 1; fi run-all-tests: all - $(ANT) test -Dtest.size=large + ant -e test -Dtest.size=large if [ ! -s linphone-junit-report-large.xml ]; then exit 1; fi