Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 91189 invoked from network); 5 May 2009 07:04:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 5 May 2009 07:04:12 -0000 Received: (qmail 69502 invoked by uid 500); 5 May 2009 07:04:11 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 69459 invoked by uid 500); 5 May 2009 07:04:11 -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 69450 invoked by uid 99); 5 May 2009 07:04:11 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 May 2009 07:04:11 +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; Tue, 05 May 2009 07:04:01 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 9B7CE23889D9; Tue, 5 May 2009 07:03:40 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r771594 - in /harmony/enhanced/classlib/trunk: make/build-test.xml make/properties.xml make/run-test.xml make/test.properties modules/luni/build.xml Date: Tue, 05 May 2009 07:03:40 -0000 To: commits@harmony.apache.org From: qiuxx@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090505070340.9B7CE23889D9@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: qiuxx Date: Tue May 5 07:03:39 2009 New Revision: 771594 URL: http://svn.apache.org/viewvc?rev=771594&view=rev Log: Apply for HARMONY-6083, package the compiled tests into the HDK to reuse, complete testing archive for luni Added: harmony/enhanced/classlib/trunk/make/run-test.xml harmony/enhanced/classlib/trunk/make/test.properties Modified: harmony/enhanced/classlib/trunk/make/build-test.xml harmony/enhanced/classlib/trunk/make/properties.xml harmony/enhanced/classlib/trunk/modules/luni/build.xml Modified: harmony/enhanced/classlib/trunk/make/build-test.xml URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/make/build-test.xml?rev=771594&r1=771593&r2=771594&view=diff ============================================================================== --- harmony/enhanced/classlib/trunk/make/build-test.xml (original) +++ harmony/enhanced/classlib/trunk/make/build-test.xml Tue May 5 07:03:39 2009 @@ -53,6 +53,8 @@ + + Modified: harmony/enhanced/classlib/trunk/make/properties.xml URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/make/properties.xml?rev=771594&r1=771593&r2=771594&view=diff ============================================================================== --- harmony/enhanced/classlib/trunk/make/properties.xml (original) +++ harmony/enhanced/classlib/trunk/make/properties.xml Tue May 5 07:03:39 2009 @@ -275,14 +275,6 @@ - - - - - - @@ -578,6 +570,15 @@ + + + + + + Added: harmony/enhanced/classlib/trunk/make/run-test.xml URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/make/run-test.xml?rev=771594&view=auto ============================================================================== --- harmony/enhanced/classlib/trunk/make/run-test.xml (added) +++ harmony/enhanced/classlib/trunk/make/run-test.xml Tue May 5 07:03:39 2009 @@ -0,0 +1,199 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + failure${line.separator} + + + + error${line.separator} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Added: harmony/enhanced/classlib/trunk/make/test.properties URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/make/test.properties?rev=771594&view=auto ============================================================================== --- harmony/enhanced/classlib/trunk/make/test.properties (added) +++ harmony/enhanced/classlib/trunk/make/test.properties Tue May 5 07:03:39 2009 @@ -0,0 +1,32 @@ +## Licensed to the Apache Software Foundation (ASF) under one +## or more contributor license agreements. See the NOTICE file +## distributed with this work for additional information +## regarding copyright ownership. The ASF licenses this file +## to you under the Apache License, Version 2.0 (the +## "License"); you may not use this file except in compliance +## with the License. You may obtain a copy of the License at +## +## http://www.apache.org/licenses/LICENSE-2.0 +## +## Unless required by applicable law or agreed to in writing, +## software distributed under the License is distributed on an +## "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +## KIND, either express or implied. See the License for the +## specific language governing permissions and limitations +## under the License. +## ====================================================================================== +## + + +# Use "ant echo" to get more configuration parameters + + +# To be tested runtime location +test.jre.home= + +# Junit test mode +hy.test.forkmode=perTest + +# Junit test timeout +hy.test.timeout=900000 + Modified: harmony/enhanced/classlib/trunk/modules/luni/build.xml URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/luni/build.xml?rev=771594&r1=771593&r2=771594&view=diff ============================================================================== --- harmony/enhanced/classlib/trunk/modules/luni/build.xml (original) +++ harmony/enhanced/classlib/trunk/modules/luni/build.xml Tue May 5 07:03:39 2009 @@ -27,9 +27,9 @@ - + value="${hy.luni.src.test.api}/${hy.os.family}" /> + @@ -41,6 +41,13 @@ + + + + + + + @@ -210,7 +217,7 @@ - + @@ -219,6 +226,7 @@ + @@ -287,6 +295,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +