From 5f65388e6927ecf28c294c5d5c9d65e9f40493ac Mon Sep 17 00:00:00 2001 From: DanB Date: Wed, 9 Apr 2014 15:43:17 +0200 Subject: [PATCH] Fixup test.sh with new general_tests --- test.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test.sh b/test.sh index 831b73e97..e8e4c861f 100755 --- a/test.sh +++ b/test.sh @@ -15,8 +15,8 @@ go test -i github.com/cgrates/cgrates/cdre go test github.com/cgrates/cgrates/engine en=$? -go test github.com/cgrates/cgrates/charging_tests -ct=$? +go test github.com/cgrates/cgrates/general_tests +gt=$? go test github.com/cgrates/cgrates/sessionmanager sm=$? go test github.com/cgrates/cgrates/config @@ -41,4 +41,4 @@ go test github.com/cgrates/cgrates/cdre cdre=$? -exit $en && $ct && $sm && $cfg && $bl && $cr && $md && $cdrs && $cdrc && $fs && $ut && $hs && $c2g && $cdre +exit $en && $gt && $sm && $cfg && $bl && $cr && $md && $cdrs && $cdrc && $fs && $ut && $hs && $c2g && $cdre