You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@harmony.apache.org by George Harley <ge...@googlemail.com> on 2006/07/06 13:55:14 UTC

Re: svn commit: r419522 - in /incubator/harmony/enhanced/classlib/trunk/modules/nio: .classpath build.xml make/hyproperties.xml src/test/java/common/ src/test/java/common/org/ src/test/java/linux/ src/test/java/org/ src/test/java/windows/

Hi Mark,

 From what I can tell this JIRA hasn't really achieved much apart from 
pushing code around the repository and breaking at least one patch 
(HARMONY-755). It would be great if you or Paulex (and everyone in fact) 
could comment in the "[classlib] Testing conventions - a proposal" 
thread [1] about this.

Thanks,
George

[1] 
http://mail-archives.apache.org/mod_mbox/incubator-harmony-dev/200607.mbox/%3c44ABB451.30806@googlemail.com%3e



hindessm@apache.org wrote:
> Author: hindessm
> Date: Thu Jul  6 04:20:27 2006
> New Revision: 419522
>
> URL: http://svn.apache.org/viewvc?rev=419522&view=rev
> Log:
> Applied changes for "[#HARMONY-782] [classlib][nio]Relayout NIO test cases to platform dependent".
>
> Added:
>     incubator/harmony/enhanced/classlib/trunk/modules/nio/src/test/java/common/
>     incubator/harmony/enhanced/classlib/trunk/modules/nio/src/test/java/common/org/
>       - copied from r419518, incubator/harmony/enhanced/classlib/trunk/modules/nio/src/test/java/org/
>     incubator/harmony/enhanced/classlib/trunk/modules/nio/src/test/java/linux/
>     incubator/harmony/enhanced/classlib/trunk/modules/nio/src/test/java/windows/
> Removed:
>     incubator/harmony/enhanced/classlib/trunk/modules/nio/src/test/java/org/
> Modified:
>     incubator/harmony/enhanced/classlib/trunk/modules/nio/.classpath
>     incubator/harmony/enhanced/classlib/trunk/modules/nio/build.xml
>     incubator/harmony/enhanced/classlib/trunk/modules/nio/make/hyproperties.xml
>
> Modified: incubator/harmony/enhanced/classlib/trunk/modules/nio/.classpath
> URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/nio/.classpath?rev=419522&r1=419521&r2=419522&view=diff
> ==============================================================================
> --- incubator/harmony/enhanced/classlib/trunk/modules/nio/.classpath (original)
> +++ incubator/harmony/enhanced/classlib/trunk/modules/nio/.classpath Thu Jul  6 04:20:27 2006
> @@ -1,7 +1,9 @@
>  <?xml version="1.0" encoding="UTF-8"?>
>  <classpath>
>  	<classpathentry output="bin/main" kind="src" path="src/main/java"/>
> -	<classpathentry output="bin/test" kind="src" path="src/test/java"/>
> +	<classpathentry output="bin/test" kind="src" path="src/test/java/common"/>
> +	<classpathentry output="bin/test" kind="src" path="src/test/java/windows"/>
> +	<classpathentry output="bin/test" kind="src" path="src/test/java/linux"/>
>  	<classpathentry output="bin/test" kind="src" path="src/test/resources"/>
>  	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
>  	<classpathentry sourcepath="JUNIT_SRC_HOME/junitsrc.zip" kind="var" path="JUNIT_HOME/junit.jar"/>
>
> Modified: incubator/harmony/enhanced/classlib/trunk/modules/nio/build.xml
> URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/nio/build.xml?rev=419522&r1=419521&r2=419522&view=diff
> ==============================================================================
> --- incubator/harmony/enhanced/classlib/trunk/modules/nio/build.xml (original)
> +++ incubator/harmony/enhanced/classlib/trunk/modules/nio/build.xml Thu Jul  6 04:20:27 2006
> @@ -35,6 +35,9 @@
>  	     use the Eclipse Java compiler. -->
>  	<property name="build.compiler" value="modern" />
>  
> +        <property name="hy.nio.src.test.java.platform"
> +                  value="${hy.nio.src.test.java}/../${hy.os}" />
> +
>  	<target name="build" depends="compile.java, build.jar" />
>  
>  	<target name="test" depends="build, compile.tests, run.tests" />
> @@ -108,19 +111,23 @@
>  
>  		<mkdir dir="${hy.nio.bin.test}" />
>  
> -		<javac srcdir="${hy.nio.src.test.java}"
> -			destdir="${hy.nio.bin.test}"
> -			sourcepath=""
> -			source="${hy.javac.source}"
> -			target="${hy.javac.target}"
> -			debug="${hy.javac.debug}">
> -
> -			<bootclasspath>
> -				<fileset dir="${hy.jdk}/jre/lib/boot">
> -					<include name="**/*.jar" />
> -				</fileset>
> -			</bootclasspath>
> -			<classpath location="${hy.hdk}/build/test/support.jar" />
> +		<javac destdir="${hy.nio.bin.test}"
> +		       sourcepath=""
> +		       source="${hy.javac.source}"
> +		       target="${hy.javac.target}"
> +		       debug="${hy.javac.debug}">
> +
> +                    <src>
> +                        <pathelement location="${hy.nio.src.test.java}"/>
> +                        <pathelement
> +                             location="${hy.nio.src.test.java.platform}"/>
> +                    </src>
> +		    <bootclasspath>
> +			<fileset dir="${hy.jdk}/jre/lib/boot">
> +			    <include name="**/*.jar" />
> +			</fileset>
> +		    </bootclasspath>
> +		    <classpath location="${hy.hdk}/build/test/support.jar" />
>  		</javac>
>  	</target>
>  
> @@ -153,6 +160,9 @@
>  
>  			<batchtest todir="${hy.tests.reports}" haltonfailure="no" unless="test.case">
>  				<fileset dir="${hy.nio.src.test.java}">
> +					<include name="**/*Test.java" />
> +				</fileset>
> +				<fileset dir="${hy.nio.src.test.java.platform}">
>  					<include name="**/*Test.java" />
>  				</fileset>
>  			</batchtest>
>
> Modified: incubator/harmony/enhanced/classlib/trunk/modules/nio/make/hyproperties.xml
> URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/nio/make/hyproperties.xml?rev=419522&r1=419521&r2=419522&view=diff
> ==============================================================================
> --- incubator/harmony/enhanced/classlib/trunk/modules/nio/make/hyproperties.xml (original)
> +++ incubator/harmony/enhanced/classlib/trunk/modules/nio/make/hyproperties.xml Thu Jul  6 04:20:27 2006
> @@ -20,11 +20,11 @@
>        <src>
>           <main>
>              <java location="src/main/java" />
> -        	<resources location="src/main/resources" />
> -        	<native location="src/main/native" />
> +            <resources location="src/main/resources" />
> +            <native location="src/main/native" />
>           </main>
>           <test>
> -            <java location="src/test/java" />
> +            <java location="src/test/java/common" />
>              <resources location="src/test/resources" />
>           </test>
>           <natives location="src/natives" />
>
>
>
>   


---------------------------------------------------------------------
Terms of use : http://incubator.apache.org/harmony/mailing.html
To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org
For additional commands, e-mail: harmony-dev-help@incubator.apache.org


Re: svn commit: r419522 - in /incubator/harmony/enhanced/classlib/trunk/modules/nio: .classpath build.xml make/hyproperties.xml src/test/java/common/ src/test/java/common/org/ src/test/java/linux/ src/test/java/org/ src/test/java/windows/

Posted by George Harley <ge...@googlemail.com>.
Paulex Yang wrote:
> Hi, George
>
> I've read that thread, and I agree with you that the test layout is an 
> issue worthing consideration, but before heading into the discussion 
> on test convention(again), I want to have a look at TestNG at first so 
> that I can have more value-add to that thread.

Hi Paulex,

Your inclusion of the parenthesized "again" speaks volumes. Believe me, 
I enjoy those sorts of discussions every bit as much as you do. However, 
I truly feel that there is something pretty major at stake here which 
merits up-front debate.

>
> But on the other side, I've committed (to Andrew and Jimmy) that I'll 
> help to address the platform dependent nio tests, and I guess they may 
> have got quite a few such kind of tests in hand(I've been urged 
> several times on the list after my commitment :( ), and IMO it is not 
> necessary to stop all related work during the discussion, I for sure 
> have no objection to refactor them later (I promise I will volunteer 
> to do that, at least for NIO module) if TestNG is identified at last 
> as a better choice.

What schedule are you working to here ? Is it so important that it must 
be done right now ? Even if it means the possibility of creating a 
bundle of no-value "tests refactoring" work later on to un-do it all ? 
One of the reasons that we need the tests layout discussion is so that 
we can minimise the endless re-shuffling, slicing and dicing of the test 
code. It's a lot of effort for no obvious gain and we need to deal with 
it so that we can get on with more valuable activities.

Best regards,
George


>
> George Harley wrote:
>> Hi Mark,
>>
>> From what I can tell this JIRA hasn't really achieved much apart from 
>> pushing code around the repository and breaking at least one patch 
>> (HARMONY-755). It would be great if you or Paulex (and everyone in 
>> fact) could comment in the "[classlib] Testing conventions - a 
>> proposal" thread [1] about this.
>>
>> Thanks,
>> George
>>
>> [1] 
>> http://mail-archives.apache.org/mod_mbox/incubator-harmony-dev/200607.mbox/%3c44ABB451.30806@googlemail.com%3e 
>>
>>
>>
>>
>> hindessm@apache.org wrote:
>>> Author: hindessm
>>> Date: Thu Jul  6 04:20:27 2006
>>> New Revision: 419522
>>>
>>> URL: http://svn.apache.org/viewvc?rev=419522&view=rev
>>> Log:
>>> Applied changes for "[#HARMONY-782] [classlib][nio]Relayout NIO test 
>>> cases to platform dependent".
>>>
>>> Added:
>>>     
>>> incubator/harmony/enhanced/classlib/trunk/modules/nio/src/test/java/common/ 
>>>
>>>     
>>> incubator/harmony/enhanced/classlib/trunk/modules/nio/src/test/java/common/org/ 
>>>
>>>       - copied from r419518, 
>>> incubator/harmony/enhanced/classlib/trunk/modules/nio/src/test/java/org/ 
>>>
>>>     
>>> incubator/harmony/enhanced/classlib/trunk/modules/nio/src/test/java/linux/ 
>>>
>>>     
>>> incubator/harmony/enhanced/classlib/trunk/modules/nio/src/test/java/windows/ 
>>>
>>> Removed:
>>>     
>>> incubator/harmony/enhanced/classlib/trunk/modules/nio/src/test/java/org/ 
>>>
>>> Modified:
>>>     incubator/harmony/enhanced/classlib/trunk/modules/nio/.classpath
>>>     incubator/harmony/enhanced/classlib/trunk/modules/nio/build.xml
>>>     
>>> incubator/harmony/enhanced/classlib/trunk/modules/nio/make/hyproperties.xml 
>>>
>>>
>>> Modified: 
>>> incubator/harmony/enhanced/classlib/trunk/modules/nio/.classpath
>>> URL: 
>>> http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/nio/.classpath?rev=419522&r1=419521&r2=419522&view=diff 
>>>
>>> ============================================================================== 
>>>
>>> --- incubator/harmony/enhanced/classlib/trunk/modules/nio/.classpath 
>>> (original)
>>> +++ incubator/harmony/enhanced/classlib/trunk/modules/nio/.classpath 
>>> Thu Jul  6 04:20:27 2006
>>> @@ -1,7 +1,9 @@
>>>  <?xml version="1.0" encoding="UTF-8"?>
>>>  <classpath>
>>>      <classpathentry output="bin/main" kind="src" 
>>> path="src/main/java"/>
>>> -    <classpathentry output="bin/test" kind="src" 
>>> path="src/test/java"/>
>>> +    <classpathentry output="bin/test" kind="src" 
>>> path="src/test/java/common"/>
>>> +    <classpathentry output="bin/test" kind="src" 
>>> path="src/test/java/windows"/>
>>> +    <classpathentry output="bin/test" kind="src" 
>>> path="src/test/java/linux"/>
>>>      <classpathentry output="bin/test" kind="src" 
>>> path="src/test/resources"/>
>>>      <classpathentry kind="con" 
>>> path="org.eclipse.pde.core.requiredPlugins"/>
>>>      <classpathentry sourcepath="JUNIT_SRC_HOME/junitsrc.zip" 
>>> kind="var" path="JUNIT_HOME/junit.jar"/>
>>>
>>> Modified: 
>>> incubator/harmony/enhanced/classlib/trunk/modules/nio/build.xml
>>> URL: 
>>> http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/nio/build.xml?rev=419522&r1=419521&r2=419522&view=diff 
>>>
>>> ============================================================================== 
>>>
>>> --- incubator/harmony/enhanced/classlib/trunk/modules/nio/build.xml 
>>> (original)
>>> +++ incubator/harmony/enhanced/classlib/trunk/modules/nio/build.xml 
>>> Thu Jul  6 04:20:27 2006
>>> @@ -35,6 +35,9 @@
>>>           use the Eclipse Java compiler. -->
>>>      <property name="build.compiler" value="modern" />
>>>  
>>> +        <property name="hy.nio.src.test.java.platform"
>>> +                  value="${hy.nio.src.test.java}/../${hy.os}" />
>>> +
>>>      <target name="build" depends="compile.java, build.jar" />
>>>  
>>>      <target name="test" depends="build, compile.tests, run.tests" />
>>> @@ -108,19 +111,23 @@
>>>  
>>>          <mkdir dir="${hy.nio.bin.test}" />
>>>  
>>> -        <javac srcdir="${hy.nio.src.test.java}"
>>> -            destdir="${hy.nio.bin.test}"
>>> -            sourcepath=""
>>> -            source="${hy.javac.source}"
>>> -            target="${hy.javac.target}"
>>> -            debug="${hy.javac.debug}">
>>> -
>>> -            <bootclasspath>
>>> -                <fileset dir="${hy.jdk}/jre/lib/boot">
>>> -                    <include name="**/*.jar" />
>>> -                </fileset>
>>> -            </bootclasspath>
>>> -            <classpath location="${hy.hdk}/build/test/support.jar" />
>>> +        <javac destdir="${hy.nio.bin.test}"
>>> +               sourcepath=""
>>> +               source="${hy.javac.source}"
>>> +               target="${hy.javac.target}"
>>> +               debug="${hy.javac.debug}">
>>> +
>>> +                    <src>
>>> +                        <pathelement 
>>> location="${hy.nio.src.test.java}"/>
>>> +                        <pathelement
>>> +                             
>>> location="${hy.nio.src.test.java.platform}"/>
>>> +                    </src>
>>> +            <bootclasspath>
>>> +            <fileset dir="${hy.jdk}/jre/lib/boot">
>>> +                <include name="**/*.jar" />
>>> +            </fileset>
>>> +            </bootclasspath>
>>> +            <classpath location="${hy.hdk}/build/test/support.jar" />
>>>          </javac>
>>>      </target>
>>>  
>>> @@ -153,6 +160,9 @@
>>>  
>>>              <batchtest todir="${hy.tests.reports}" 
>>> haltonfailure="no" unless="test.case">
>>>                  <fileset dir="${hy.nio.src.test.java}">
>>> +                    <include name="**/*Test.java" />
>>> +                </fileset>
>>> +                <fileset dir="${hy.nio.src.test.java.platform}">
>>>                      <include name="**/*Test.java" />
>>>                  </fileset>
>>>              </batchtest>
>>>
>>> Modified: 
>>> incubator/harmony/enhanced/classlib/trunk/modules/nio/make/hyproperties.xml 
>>>
>>> URL: 
>>> http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/nio/make/hyproperties.xml?rev=419522&r1=419521&r2=419522&view=diff 
>>>
>>> ============================================================================== 
>>>
>>> --- 
>>> incubator/harmony/enhanced/classlib/trunk/modules/nio/make/hyproperties.xml 
>>> (original)
>>> +++ 
>>> incubator/harmony/enhanced/classlib/trunk/modules/nio/make/hyproperties.xml 
>>> Thu Jul  6 04:20:27 2006
>>> @@ -20,11 +20,11 @@
>>>        <src>
>>>           <main>
>>>              <java location="src/main/java" />
>>> -            <resources location="src/main/resources" />
>>> -            <native location="src/main/native" />
>>> +            <resources location="src/main/resources" />
>>> +            <native location="src/main/native" />
>>>           </main>
>>>           <test>
>>> -            <java location="src/test/java" />
>>> +            <java location="src/test/java/common" />
>>>              <resources location="src/test/resources" />
>>>           </test>
>>>           <natives location="src/natives" />
>>>
>>>
>>>
>>>   
>>
>>
>> ---------------------------------------------------------------------
>> Terms of use : http://incubator.apache.org/harmony/mailing.html
>> To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org
>> For additional commands, e-mail: harmony-dev-help@incubator.apache.org
>>
>>
>
>


---------------------------------------------------------------------
Terms of use : http://incubator.apache.org/harmony/mailing.html
To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org
For additional commands, e-mail: harmony-dev-help@incubator.apache.org


Re: svn commit: r419522 - in /incubator/harmony/enhanced/classlib/trunk/modules/nio: .classpath build.xml make/hyproperties.xml src/test/java/common/ src/test/java/common/org/ src/test/java/linux/ src/test/java/org/ src/test/java/windows/

Posted by Paulex Yang <pa...@gmail.com>.
Hi, George

I've read that thread, and I agree with you that the test layout is an 
issue worthing consideration, but before heading into the discussion on 
test convention(again), I want to have a look at TestNG at first so that 
I can have more value-add to that thread.

But on the other side, I've committed (to Andrew and Jimmy) that I'll 
help to address the platform dependent nio tests, and I guess they may 
have got quite a few such kind of tests in hand(I've been urged several 
times on the list after my commitment :( ), and IMO it is not necessary 
to stop all related work during the discussion, I for sure have no 
objection to refactor them later (I promise I will volunteer to do that, 
at least for NIO module) if TestNG is identified at last as a better 
choice.

George Harley wrote:
> Hi Mark,
>
> From what I can tell this JIRA hasn't really achieved much apart from 
> pushing code around the repository and breaking at least one patch 
> (HARMONY-755). It would be great if you or Paulex (and everyone in 
> fact) could comment in the "[classlib] Testing conventions - a 
> proposal" thread [1] about this.
>
> Thanks,
> George
>
> [1] 
> http://mail-archives.apache.org/mod_mbox/incubator-harmony-dev/200607.mbox/%3c44ABB451.30806@googlemail.com%3e 
>
>
>
>
> hindessm@apache.org wrote:
>> Author: hindessm
>> Date: Thu Jul  6 04:20:27 2006
>> New Revision: 419522
>>
>> URL: http://svn.apache.org/viewvc?rev=419522&view=rev
>> Log:
>> Applied changes for "[#HARMONY-782] [classlib][nio]Relayout NIO test 
>> cases to platform dependent".
>>
>> Added:
>>     
>> incubator/harmony/enhanced/classlib/trunk/modules/nio/src/test/java/common/ 
>>
>>     
>> incubator/harmony/enhanced/classlib/trunk/modules/nio/src/test/java/common/org/ 
>>
>>       - copied from r419518, 
>> incubator/harmony/enhanced/classlib/trunk/modules/nio/src/test/java/org/
>>     
>> incubator/harmony/enhanced/classlib/trunk/modules/nio/src/test/java/linux/ 
>>
>>     
>> incubator/harmony/enhanced/classlib/trunk/modules/nio/src/test/java/windows/ 
>>
>> Removed:
>>     
>> incubator/harmony/enhanced/classlib/trunk/modules/nio/src/test/java/org/
>> Modified:
>>     incubator/harmony/enhanced/classlib/trunk/modules/nio/.classpath
>>     incubator/harmony/enhanced/classlib/trunk/modules/nio/build.xml
>>     
>> incubator/harmony/enhanced/classlib/trunk/modules/nio/make/hyproperties.xml 
>>
>>
>> Modified: 
>> incubator/harmony/enhanced/classlib/trunk/modules/nio/.classpath
>> URL: 
>> http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/nio/.classpath?rev=419522&r1=419521&r2=419522&view=diff 
>>
>> ============================================================================== 
>>
>> --- incubator/harmony/enhanced/classlib/trunk/modules/nio/.classpath 
>> (original)
>> +++ incubator/harmony/enhanced/classlib/trunk/modules/nio/.classpath 
>> Thu Jul  6 04:20:27 2006
>> @@ -1,7 +1,9 @@
>>  <?xml version="1.0" encoding="UTF-8"?>
>>  <classpath>
>>      <classpathentry output="bin/main" kind="src" path="src/main/java"/>
>> -    <classpathentry output="bin/test" kind="src" path="src/test/java"/>
>> +    <classpathentry output="bin/test" kind="src" 
>> path="src/test/java/common"/>
>> +    <classpathentry output="bin/test" kind="src" 
>> path="src/test/java/windows"/>
>> +    <classpathentry output="bin/test" kind="src" 
>> path="src/test/java/linux"/>
>>      <classpathentry output="bin/test" kind="src" 
>> path="src/test/resources"/>
>>      <classpathentry kind="con" 
>> path="org.eclipse.pde.core.requiredPlugins"/>
>>      <classpathentry sourcepath="JUNIT_SRC_HOME/junitsrc.zip" 
>> kind="var" path="JUNIT_HOME/junit.jar"/>
>>
>> Modified: 
>> incubator/harmony/enhanced/classlib/trunk/modules/nio/build.xml
>> URL: 
>> http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/nio/build.xml?rev=419522&r1=419521&r2=419522&view=diff 
>>
>> ============================================================================== 
>>
>> --- incubator/harmony/enhanced/classlib/trunk/modules/nio/build.xml 
>> (original)
>> +++ incubator/harmony/enhanced/classlib/trunk/modules/nio/build.xml 
>> Thu Jul  6 04:20:27 2006
>> @@ -35,6 +35,9 @@
>>           use the Eclipse Java compiler. -->
>>      <property name="build.compiler" value="modern" />
>>  
>> +        <property name="hy.nio.src.test.java.platform"
>> +                  value="${hy.nio.src.test.java}/../${hy.os}" />
>> +
>>      <target name="build" depends="compile.java, build.jar" />
>>  
>>      <target name="test" depends="build, compile.tests, run.tests" />
>> @@ -108,19 +111,23 @@
>>  
>>          <mkdir dir="${hy.nio.bin.test}" />
>>  
>> -        <javac srcdir="${hy.nio.src.test.java}"
>> -            destdir="${hy.nio.bin.test}"
>> -            sourcepath=""
>> -            source="${hy.javac.source}"
>> -            target="${hy.javac.target}"
>> -            debug="${hy.javac.debug}">
>> -
>> -            <bootclasspath>
>> -                <fileset dir="${hy.jdk}/jre/lib/boot">
>> -                    <include name="**/*.jar" />
>> -                </fileset>
>> -            </bootclasspath>
>> -            <classpath location="${hy.hdk}/build/test/support.jar" />
>> +        <javac destdir="${hy.nio.bin.test}"
>> +               sourcepath=""
>> +               source="${hy.javac.source}"
>> +               target="${hy.javac.target}"
>> +               debug="${hy.javac.debug}">
>> +
>> +                    <src>
>> +                        <pathelement 
>> location="${hy.nio.src.test.java}"/>
>> +                        <pathelement
>> +                             
>> location="${hy.nio.src.test.java.platform}"/>
>> +                    </src>
>> +            <bootclasspath>
>> +            <fileset dir="${hy.jdk}/jre/lib/boot">
>> +                <include name="**/*.jar" />
>> +            </fileset>
>> +            </bootclasspath>
>> +            <classpath location="${hy.hdk}/build/test/support.jar" />
>>          </javac>
>>      </target>
>>  
>> @@ -153,6 +160,9 @@
>>  
>>              <batchtest todir="${hy.tests.reports}" 
>> haltonfailure="no" unless="test.case">
>>                  <fileset dir="${hy.nio.src.test.java}">
>> +                    <include name="**/*Test.java" />
>> +                </fileset>
>> +                <fileset dir="${hy.nio.src.test.java.platform}">
>>                      <include name="**/*Test.java" />
>>                  </fileset>
>>              </batchtest>
>>
>> Modified: 
>> incubator/harmony/enhanced/classlib/trunk/modules/nio/make/hyproperties.xml 
>>
>> URL: 
>> http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/nio/make/hyproperties.xml?rev=419522&r1=419521&r2=419522&view=diff 
>>
>> ============================================================================== 
>>
>> --- 
>> incubator/harmony/enhanced/classlib/trunk/modules/nio/make/hyproperties.xml 
>> (original)
>> +++ 
>> incubator/harmony/enhanced/classlib/trunk/modules/nio/make/hyproperties.xml 
>> Thu Jul  6 04:20:27 2006
>> @@ -20,11 +20,11 @@
>>        <src>
>>           <main>
>>              <java location="src/main/java" />
>> -            <resources location="src/main/resources" />
>> -            <native location="src/main/native" />
>> +            <resources location="src/main/resources" />
>> +            <native location="src/main/native" />
>>           </main>
>>           <test>
>> -            <java location="src/test/java" />
>> +            <java location="src/test/java/common" />
>>              <resources location="src/test/resources" />
>>           </test>
>>           <natives location="src/natives" />
>>
>>
>>
>>   
>
>
> ---------------------------------------------------------------------
> Terms of use : http://incubator.apache.org/harmony/mailing.html
> To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org
> For additional commands, e-mail: harmony-dev-help@incubator.apache.org
>
>


-- 
Paulex Yang
China Software Development Lab
IBM



---------------------------------------------------------------------
Terms of use : http://incubator.apache.org/harmony/mailing.html
To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org
For additional commands, e-mail: harmony-dev-help@incubator.apache.org