From d9e5265fea17a974ed83b9635a0d0ae805277bff Mon Sep 17 00:00:00 2001 From: Andreas Waidler Date: Fri, 24 Jun 2011 15:31:34 +0200 Subject: [PATCH] Fix: False positive in agg_fail. --- tests_usr/libtests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests_usr/libtests.sh b/tests_usr/libtests.sh index f32b8fa..621658f 100755 --- a/tests_usr/libtests.sh +++ b/tests_usr/libtests.sh @@ -24,7 +24,7 @@ function agg_fail() res=$? if [ $res -eq 0 ]; then echo "Failed to fail running agg." - exit $res + exit 1 fi } -- 2.11.4.GIT