Return-Path: Delivered-To: apmail-gump-commits-archive@www.apache.org Received: (qmail 6823 invoked from network); 11 Jul 2010 09:28:15 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 11 Jul 2010 09:28:15 -0000 Received: (qmail 7632 invoked by uid 500); 11 Jul 2010 09:28:14 -0000 Mailing-List: contact commits-help@gump.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: general@gump.apache.org Delivered-To: mailing list commits@gump.apache.org Received: (qmail 7624 invoked by uid 99); 11 Jul 2010 09:28:13 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 11 Jul 2010 09:28:13 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 11 Jul 2010 09:28:10 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id C4C4123889B1; Sun, 11 Jul 2010 09:27:16 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r963022 - in /gump/trunk: python/gump/test/pyunit.py test/gumptest.sh Date: Sun, 11 Jul 2010 09:27:16 -0000 To: commits@gump.apache.org From: bodewig@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100711092716.C4C4123889B1@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Sun Jul 11 09:27:15 2010 New Revision: 963022 URL: http://svn.apache.org/viewvc?rev=963022&view=rev Log: nobody knows the unit tests have been broken for months now Modified: gump/trunk/python/gump/test/pyunit.py gump/trunk/test/gumptest.sh Modified: gump/trunk/python/gump/test/pyunit.py URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/test/pyunit.py?rev=963022&r1=963021&r2=963022&view=diff ============================================================================== --- gump/trunk/python/gump/test/pyunit.py (original) +++ gump/trunk/python/gump/test/pyunit.py Sun Jul 11 09:27:15 2010 @@ -311,8 +311,10 @@ class TestRunner: log.error('------------------------------------------------------------------------') log.error('PROBLEM: ' + str(problem)) + exit_code = 1 if not problems: log.info('No Problems Detected') + exit_code = 0 problems = None self.suites = None @@ -320,9 +322,7 @@ class TestRunner: # Seems a nice place to peek/clean-up... invokeGarbageCollection('Done Testing') - if problems: - sys.exit(1) - #sys.exit(0) + sys.exit(exit_code) def doRun(ptrns): gumpinit() Modified: gump/trunk/test/gumptest.sh URL: http://svn.apache.org/viewvc/gump/trunk/test/gumptest.sh?rev=963022&r1=963021&r2=963022&view=diff ============================================================================== --- gump/trunk/test/gumptest.sh (original) +++ gump/trunk/test/gumptest.sh Sun Jul 11 09:27:15 2010 @@ -45,16 +45,16 @@ echo "---------------------------------- echo "Run ... $GUMP_PYTHON gump/test/pyunit.py" $GUMP_PYTHON gump/test/pyunit.py -echo "--------------------------------------------------" -echo "Run the environment check" -$GUMP_PYTHON ../bin/env.py +#echo "--------------------------------------------------" +#echo "Run the environment check" +#$GUMP_PYTHON ../bin/env.py -echo "--------------------------------------------------" +#echo "--------------------------------------------------" # echo "Run the Workspace check" # $GUMP_PYTHON ../bin/check.py -w ../metadata/test-workspace.xml all --debug -echo "--------------------------------------------------" +#echo "--------------------------------------------------" # echo "Run the Workspace preview" # $GUMP_PYTHON ../bin/preview.py -w ../metadata/test-workspace.xml all --debug