From scm-return-17441-apmail-geronimo-scm-archive=geronimo.apache.org@geronimo.apache.org Sat Feb 03 00:41:01 2007 Return-Path: Delivered-To: apmail-geronimo-scm-archive@www.apache.org Received: (qmail 61796 invoked from network); 3 Feb 2007 00:41:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 3 Feb 2007 00:41:00 -0000 Received: (qmail 44525 invoked by uid 500); 3 Feb 2007 00:41:07 -0000 Delivered-To: apmail-geronimo-scm-archive@geronimo.apache.org Received: (qmail 44382 invoked by uid 500); 3 Feb 2007 00:41:06 -0000 Mailing-List: contact scm-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list scm@geronimo.apache.org Received: (qmail 44371 invoked by uid 99); 3 Feb 2007 00:41:06 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Feb 2007 16:41:06 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Feb 2007 16:40:59 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 65D401A981D; Fri, 2 Feb 2007 16:40:39 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r502812 - /geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/config/projects/Geronimo_CTS/report/TestResult.groovy Date: Sat, 03 Feb 2007 00:40:39 -0000 To: scm@geronimo.apache.org From: jdillon@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070203004039.65D401A981D@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jdillon Date: Fri Feb 2 16:40:38 2007 New Revision: 502812 URL: http://svn.apache.org/viewvc?view=rev&rev=502812 Log: Don't specify types... they are good and bad :-\ Modified: geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/config/projects/Geronimo_CTS/report/TestResult.groovy Modified: geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/config/projects/Geronimo_CTS/report/TestResult.groovy URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/config/projects/Geronimo_CTS/report/TestResult.groovy?view=diff&rev=502812&r1=502811&r2=502812 ============================================================================== --- geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/config/projects/Geronimo_CTS/report/TestResult.groovy (original) +++ geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/config/projects/Geronimo_CTS/report/TestResult.groovy Fri Feb 2 16:40:38 2007 @@ -32,17 +32,17 @@ */ class TestResult extends LogSupport { - String checksum + def checksum - Map testdescription + def testdescription - Map environment + def environment - Map testresult + def testresult - Map sections + def sections - String status + def status def TestResult(file) { load(file) @@ -242,6 +242,8 @@ sections = loadSections() status = loadStatus() + + println status.class // // TODO: Maybe sanity check the checksum for final validation of content?