Author: ayza
Date: Tue Mar 13 02:53:19 2007
New Revision: 517622
URL: http://svn.apache.org/viewvc?view=rev&rev=517622
Log:
Applying patch from HARMONY-3352 ([classlib][testing] intermittently failed tests should be
selected to run by key)
Modified:
harmony/enhanced/classlib/trunk/make/properties.xml
Modified: harmony/enhanced/classlib/trunk/make/properties.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/make/properties.xml?view=diff&rev=517622&r1=517621&r2=517622
==============================================================================
--- harmony/enhanced/classlib/trunk/make/properties.xml (original)
+++ harmony/enhanced/classlib/trunk/make/properties.xml Tue Mar 13 02:53:19 2007
@@ -219,6 +219,7 @@
<!-- names of exclude lists, used by prepare-exclude-list macro -->
<property name="common.exclude.file" value="exclude.common" />
+ <property name="common.exclude.interm" value="exclude.interm" />
<property name="platform.exclude.file"
value="exclude.${hy.platform}.${hy.test.vm.name}" />
<property name="interm.exclude.file"
@@ -392,7 +393,8 @@
<fileset dir="@{dir}">
<include name="${common.exclude.file}"/>
<include name="${platform.exclude.file}"/>
- <include name="${interm.exclude.file}"/>
+ <include name="${common.exclude.interm}" if="exclude.interm" />
+ <include name="${interm.exclude.file}" if="exclude.interm" />
<size value="0" when="more"/>
</fileset>
</concat>
|