From f487116efec3e6a3a10a68591dfcfdb9d8f90888 Mon Sep 17 00:00:00 2001 From: Gautier Pelloux-Prayer Date: Wed, 28 Jan 2015 15:32:04 +0100 Subject: [PATCH] Fix ant tester... --- tests/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Makefile b/tests/Makefile index 7d83f2617..6f03268d3 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -18,8 +18,8 @@ all: clean run-basic-tests: all $(ANT) test -Dtest.size=small - if [ ! -s linphone-junit-report.xml ]; then exit 1; fi + if [ ! -s linphone-junit-report-small.xml ]; then exit 1; fi run-all-tests: all $(ANT) test -Dtest.size=large - if [ ! -s linphone-junit-report.xml ]; then exit 1; fi + if [ ! -s linphone-junit-report-large.xml ]; then exit 1; fi