Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 45477 invoked from network); 10 Oct 2007 15:19:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 10 Oct 2007 15:19:28 -0000 Received: (qmail 98346 invoked by uid 500); 10 Oct 2007 15:07:00 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 98332 invoked by uid 500); 10 Oct 2007 15:07:00 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 98322 invoked by uid 99); 10 Oct 2007 15:07:00 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 10 Oct 2007 08:06:59 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED 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; Wed, 10 Oct 2007 15:07:02 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 57D571A9832; Wed, 10 Oct 2007 08:06:42 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r583505 [1/4] - in /harmony/enhanced/buildtest/branches/2.0: adaptors/mauve_test/ tests/mauve_test/ Date: Wed, 10 Oct 2007 15:06:41 -0000 To: commits@harmony.apache.org From: smishura@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071010150642.57D571A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: smishura Date: Wed Oct 10 08:06:40 2007 New Revision: 583505 URL: http://svn.apache.org/viewvc?rev=583505&view=rev Log: Apply patch from HARMONY-4828: ([buildtest] New test suite for mauve unit test.) Added: harmony/enhanced/buildtest/branches/2.0/adaptors/mauve_test/ harmony/enhanced/buildtest/branches/2.0/adaptors/mauve_test/MAUVE.BTI.README.txt (with props) harmony/enhanced/buildtest/branches/2.0/adaptors/mauve_test/adaptor.xml (with props) harmony/enhanced/buildtest/branches/2.0/adaptors/mauve_test/parameters.xml (with props) harmony/enhanced/buildtest/branches/2.0/tests/mauve_test/ harmony/enhanced/buildtest/branches/2.0/tests/mauve_test/all.include.list.txt harmony/enhanced/buildtest/branches/2.0/tests/mauve_test/include.list.txt (with props) Added: harmony/enhanced/buildtest/branches/2.0/adaptors/mauve_test/MAUVE.BTI.README.txt URL: http://svn.apache.org/viewvc/harmony/enhanced/buildtest/branches/2.0/adaptors/mauve_test/MAUVE.BTI.README.txt?rev=583505&view=auto ============================================================================== --- harmony/enhanced/buildtest/branches/2.0/adaptors/mauve_test/MAUVE.BTI.README.txt (added) +++ harmony/enhanced/buildtest/branches/2.0/adaptors/mauve_test/MAUVE.BTI.README.txt Wed Oct 10 08:06:40 2007 @@ -0,0 +1,86 @@ + ================================================ + Running Muave Unit Tests under BT infrastructure + ================================================ + + +This document describes how to run Mauve Unit Test on Apache Harmony +within Apache Harmony Build&Test infrastructure. +Please see BTI's README.txt for general instructions on BT usage. +The following platforms are currently supported: Linux x86, Linux x86_64. + +--------------- +Archive Content +--------------- + +This archive contains scripts for running Mauve Test within BT. +The directories structure within BT trunk directory is as follows: + ++/ +|-+adaptors/ - scripts connecting test suites to BTI (called "adaptors") +| | +| |-+mauve_test/ - mauve_test suite adaptor directory +| | +| |--adaptor.xml - mauve_test suite adaptor +| | +| |--MAUVE.BTI.README.txt - this readme file +| | +| |--parameters.xml - parameters file +| +|-+tests/ - test suites integrated into BTI + | + |-+muave_test/ - mauve_test scripts directory + | + |--all.include.list.txt - all test list that can run within harmony jre + | + |--include.list.txt - test list can pass 100% within RI + | + +----------------------------------------------------------------- +Running Mauve Unit Tests on Harmony JRE under BT infrastructure +----------------------------------------------------------------- + +1. Follow instructions from /README.txt to satisfy general BTI + pre-requisites (install necessary software, specify environment variables, + specify proxy settings if necessary). + +2. Unpack this archive to directory + +3. Perform setup: + + buildtest -Dtest.suites="classlib,drlvm,mauve_test" setup + +4. Configure Mauve Test for BT + + * Modify platform specific include.list in /tests/mauve_test if necessary. + You can change the ${required.test.list} in /adaptors/mauve_test/parameters.xml + for the wanted test list to run. Default is the all.include.list.txt. + + * Copy ecj_3.2.2.jar downloaded by BTI from /build/jar + to your ${ANT_HOME}/lib, since the mauve test need to compiled by ecj.jar. + + * Make sure configure the mauve test first, since by default the compilation is compiled by make. + There are still some variable undefined in /gnu/testlet/config.java.in. + You can configure it by "./configure", it will set the variable and change the file to cofig.java. + You can finish it manually. Refer to /README for more details. + +5. Configure BT for Mauve Unit Test run: + + * Specify appropriate mail settings in /framework.local.properties file + if you want Cruise Control to send mail notifications. + + * Specify appropriate mail settings in /framework.local.properties file + if you want Cruise Control to send mail notifications. + +6. Build classlib and drlvm and run Mauve Unit Test on it: + + buildtest -Dtest.suites="classlib,drlvm,mauve_test" run + +7. To continuously perform Harmony JRE build (classlib and drlvm) and EUT run under Cruise Control: + + buildtest -Dtest.suites="classlib,drlvm,mauve_test" run-cc + +-------------------------------- +DISCLAIMER AND LEGAL INFORMATION +-------------------------------- +Other brands and names are the property of their respective owners. + Propchange: harmony/enhanced/buildtest/branches/2.0/adaptors/mauve_test/MAUVE.BTI.README.txt ------------------------------------------------------------------------------ svn:eol-style = native Added: harmony/enhanced/buildtest/branches/2.0/adaptors/mauve_test/adaptor.xml URL: http://svn.apache.org/viewvc/harmony/enhanced/buildtest/branches/2.0/adaptors/mauve_test/adaptor.xml?rev=583505&view=auto ============================================================================== --- harmony/enhanced/buildtest/branches/2.0/adaptors/mauve_test/adaptor.xml (added) +++ harmony/enhanced/buildtest/branches/2.0/adaptors/mauve_test/adaptor.xml Wed Oct 10 08:06:40 2007 @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Propchange: harmony/enhanced/buildtest/branches/2.0/adaptors/mauve_test/adaptor.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: harmony/enhanced/buildtest/branches/2.0/adaptors/mauve_test/parameters.xml URL: http://svn.apache.org/viewvc/harmony/enhanced/buildtest/branches/2.0/adaptors/mauve_test/parameters.xml?rev=583505&view=auto ============================================================================== --- harmony/enhanced/buildtest/branches/2.0/adaptors/mauve_test/parameters.xml (added) +++ harmony/enhanced/buildtest/branches/2.0/adaptors/mauve_test/parameters.xml Wed Oct 10 08:06:40 2007 @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + Propchange: harmony/enhanced/buildtest/branches/2.0/adaptors/mauve_test/parameters.xml ------------------------------------------------------------------------------ svn:eol-style = native