You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@harmony.apache.org by Stepan Mishura <st...@gmail.com> on 2006/08/03 10:57:10 UTC

Re: [continuum] BUILD FAILURE: Classlib/win.ia32 Build/Test

I'd suggest stop committing new code until the issue is resolved - two
security tests failed (see below)

Thanks,
Stepan.


-----Original Message-----
From: Apache Harmony Build [mailto:nomail@hursley.ibm.com]
Sent: Thursday, August 03, 2006 3:19 PM
To: harmony-commits@incubator.apache.org
Subject: [continuum] BUILD FAILURE: Classlib/win.ia32 Build/Test



Online report :
http://ibmonly.hursley.ibm.com/continuum/win.ia32/servlet/continuum/target/ProjectBuild.vm/view/ProjectBuild/id/6/buildId/2034

Build statistics:

  State: Failed

  Previous State: Ok

  Started at: Thu, 3 Aug 2006 09:06:24 +0100

  Finished at: Thu, 3 Aug 2006 09:18:14 +0100

  Total time: 11m 50s

  Build Trigger: Schedule

  Exit code: 1

  Building machine hostname: hy1

  Operating system : Windows XP(Service Pack 2)

  Java version : 1.5.0_06(Sun Microsystems Inc.)



Changes


classlib\modules\luni\src\test\java\tests\api\java\net\InetSocketAddressTest.java


classlib\modules\luni\src\test\java\tests\api\java\net\Inet6AddressTest.java


classlib\modules\luni\src\test\java\tests\api\java\util\LocaleTest.java


classlib\modules\luni\src\test\resources\serialization\java\net\Inet6Address.golden.0.ser


classlib\modules\luni\src\test\resources\serialization\java\net\Inet6Address.golden.1.ser


classlib\modules\luni\src\main\java\java\net\InetSocketAddress.java


classlib\modules\luni\src\main\java\java\net\URLStreamHandler.java

            classlib\modules\luni\src\main\java\java\net\Inet6Address.java


classlib\modules\luni\src\main\java\org\apache\harmony\luni\internal\locale\ISO3Languages.java


classlib\modules\luni\src\main\java\org\apache\harmony\luni\internal\locale\ISO3Countries.java



****************************************************************************

Output:

****************************************************************************

Buildfile: build.xml

<SNIP>


[exec]     [junit] Tests run: 6, Failures: 1, Errors: 0, Time elapsed: 0 sec

[exec]     [junit] TEST
org.apache.harmony.security.tests.java.security.CodeSource2Test FAILED

[exec]     [junit] Tests run: 26, Failures: 1, Errors: 0, Time elapsed:
3.125 sec

[exec]     [junit] TEST
org.apache.harmony.security.tests.java.security.CodeSourceTest FAILED


<SNIP>

Thanks,
Stepan Mishura
Intel Middleware Products Division

------------------------------------------------------
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: [continuum] BUILD FAILURE: Classlib/win.ia32 Build/Test

Posted by Mikhail Loenko <ml...@gmail.com>.
i've taken a look at the tests and it seems that we might reduce execution time
as we did it several months ago. There are test-champions, e.g.
according to the Junit report on my windows machine
the test org.apache.harmony.logging.tests.java.util.logging.SocketHandlerTest
takes 65 seconds out of 339 total. So a single test takes 20% of the
whole suite.

Thanks,
Mikhail


2006/8/3, Paulex Yang <pa...@gmail.com>:
> Sorry for that...I checked in the patch in LUNI, and I ran LUNI test on
> both platform(win/linux), but it caused security module fail...
>
> But it's really hard to run all harmony tests for only several lines of
> update(it lasts half hour on my T43, and I have nothing to do with it
> during this....), I really want to hear some good idea about this...
>
> Geir Magnusson Jr wrote:
> > Paulex Yang wrote:
> >
> >> Andrew Zhang wrote:
> >>
> >>> The failure is caused by Harmony-1040.
> >>> The updated hostEquals(URL u1, URL u2) introduces a new bug:
> >>> It returns true when u1.host = null and u2.host = "" while it should
> >>> return
> >>> false.
> >>>
> >>> Sorry for the mistake caused by my patch. I'll update a new patch to
> >>> solve
> >>> this problem.
> >>>
> >> Great, thank you to find this, Andrew. And don't need to say sorry, it's
> >> me who takes responsibility on this and then owes the beer:-(.
> >>
> >>
> >
> >
> > Out of curiosity, did either of you run the test suite on windows before
> > offering the patch or committing it?  This isn't about "blame" or such,
> > but about learning about how to make a better process....
> >
> > There's no harm done - it was found fast, and fixed fast, so kudos to
> > you guys for working together on that.
> >
> > geir
> >
> > ---------------------------------------------------------------------
> > 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
>
>

---------------------------------------------------------------------
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: [continuum] BUILD FAILURE: Classlib/win.ia32 Build/Test

Posted by Paulex Yang <pa...@gmail.com>.
Sorry for that...I checked in the patch in LUNI, and I ran LUNI test on 
both platform(win/linux), but it caused security module fail...

But it's really hard to run all harmony tests for only several lines of 
update(it lasts half hour on my T43, and I have nothing to do with it 
during this....), I really want to hear some good idea about this...

Geir Magnusson Jr wrote:
> Paulex Yang wrote:
>   
>> Andrew Zhang wrote:
>>     
>>> The failure is caused by Harmony-1040.
>>> The updated hostEquals(URL u1, URL u2) introduces a new bug:
>>> It returns true when u1.host = null and u2.host = "" while it should
>>> return
>>> false.
>>>       
>>> Sorry for the mistake caused by my patch. I'll update a new patch to
>>> solve
>>> this problem.
>>>       
>> Great, thank you to find this, Andrew. And don't need to say sorry, it's
>> me who takes responsibility on this and then owes the beer:-(.
>>
>>     
>
>
> Out of curiosity, did either of you run the test suite on windows before
> offering the patch or committing it?  This isn't about "blame" or such,
> but about learning about how to make a better process....
>
> There's no harm done - it was found fast, and fixed fast, so kudos to
> you guys for working together on that.
>
> geir
>
> ---------------------------------------------------------------------
> 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


Re: [continuum] BUILD FAILURE: Classlib/win.ia32 Build/Test

Posted by Geir Magnusson Jr <ge...@pobox.com>.

Mark Hindess wrote:
> On 3 August 2006 at 21:36, "Andrew Zhang" <zh...@gmail.com> wrote:
>> On 8/3/06, Geir Magnusson Jr <ge...@pobox.com> wrote:
>>> Paulex Yang wrote:
>>>> Andrew Zhang wrote:
>>>>> The failure is caused by Harmony-1040.
>>>>> The updated hostEquals(URL u1, URL u2) introduces a new bug:
>>>>> It returns true when u1.host = null and u2.host = "" while it should
>>>>> return
>>>>> false.
>>>>> Sorry for the mistake caused by my patch. I'll update a new patch to
>>>>> solve this problem.
> 
> Ideally we should also add a regression test to luni to catch this 
> problem.  The fact that the problem wasn't caught means the current
> luni don't have sufficient coverage so adding a test to luni would
> help improve this.

Whatever happened to "module + 1 dependency level" for testing?

> 
> I think we should always try to do this when a change in a module
> passes that modules tests but fails another modules tests (as long
> as it is reasonably practical to do so).
> 
> Regards,
>  Mark.
> 
>>>> Great, thank you to find this, Andrew. And don't need to say sorry, it's
>>>> me who takes responsibility on this and then owes the beer:-(.
>>> Out of curiosity, did either of you run the test suite on windows before
>>> offering the patch or committing it?  This isn't about "blame" or such,
>>> but about learning about how to make a better process....
>>
>> I did run luni and nio module test on both windows and linux, but security
>> module fails...
>>
>> It's a lesson for me. I'll pay more attention next time.
>>
>>
>>
>>> There's no harm done - it was found fast, and fixed fast, so kudos to
>>> you guys for working together on that.
>>>
>>> geir
> 
> 
> ---------------------------------------------------------------------
> 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: [continuum] BUILD FAILURE: Classlib/win.ia32 Build/Test

Posted by Stepan Mishura <st...@gmail.com>.
On 8/3/06, Paulex Yang  wrote:
>
> Mark Hindess wrote:
> > On 3 August 2006 at 21:36, "Andrew Zhang" <zh...@gmail.com>
> wrote:
> >
> >> On 8/3/06, Geir Magnusson Jr <ge...@pobox.com> wrote:
> >>
> >>> Paulex Yang wrote:
> >>>
> >>>> Andrew Zhang wrote:
> >>>>
> >>>>> The failure is caused by Harmony-1040.
> >>>>> The updated hostEquals(URL u1, URL u2) introduces a new bug:
> >>>>> It returns true when u1.host = null and u2.host = "" while it should
> >>>>> return
> >>>>> false.
> >>>>>
> >>>>> Sorry for the mistake caused by my patch. I'll update a new patch to
> >>>>> solve this problem.
> >>>>>
> >
> > Ideally we should also add a regression test to luni to catch this
> > problem.  The fact that the problem wasn't caught means the current
> > luni don't have sufficient coverage so adding a test to luni would
> > help improve this.
> >
> > I think we should always try to do this when a change in a module
> > passes that modules tests but fails another modules tests (as long
> > as it is reasonably practical to do so).
> >
> Agree, I expect Andrew will include this in his new patch:).
>
> The problem more serious is how we prevent these things before commit.


IMHO if a patch fixes 'linu' module it would be better to run all tests.

Thanks,
Stepan.

> Regards,
> >  Mark.
> >
> >
> >>>> Great, thank you to find this, Andrew. And don't need to say sorry,
> it's
> >>>> me who takes responsibility on this and then owes the beer:-(.
> >>>>
> >>> Out of curiosity, did either of you run the test suite on windows
> before
> >>> offering the patch or committing it?  This isn't about "blame" or
> such,
> >>> but about learning about how to make a better process....
> >>>
> >> I did run luni and nio module test on both windows and linux, but
> security
> >> module fails...
> >>
> >> It's a lesson for me. I'll pay more attention next time.
> >>
> >>
> >>
> >>
> >>> There's no harm done - it was found fast, and fixed fast, so kudos to
> >>> you guys for working together on that.
> >>>
> >>> geir
> >>>
> >
>
>


-- 
Thanks,
Stepan Mishura
Intel Middleware Products Division

------------------------------------------------------
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: [continuum] BUILD FAILURE: Classlib/win.ia32 Build/Test

Posted by Paulex Yang <pa...@gmail.com>.
Mark Hindess wrote:
> On 3 August 2006 at 21:36, "Andrew Zhang" <zh...@gmail.com> wrote:
>   
>> On 8/3/06, Geir Magnusson Jr <ge...@pobox.com> wrote:
>>     
>>> Paulex Yang wrote:
>>>       
>>>> Andrew Zhang wrote:
>>>>         
>>>>> The failure is caused by Harmony-1040.
>>>>> The updated hostEquals(URL u1, URL u2) introduces a new bug:
>>>>> It returns true when u1.host = null and u2.host = "" while it should
>>>>> return
>>>>> false.
>>>>>           
>>>>> Sorry for the mistake caused by my patch. I'll update a new patch to
>>>>> solve this problem.
>>>>>           
>
> Ideally we should also add a regression test to luni to catch this 
> problem.  The fact that the problem wasn't caught means the current
> luni don't have sufficient coverage so adding a test to luni would
> help improve this.
>
> I think we should always try to do this when a change in a module
> passes that modules tests but fails another modules tests (as long
> as it is reasonably practical to do so).
>   
Agree, I expect Andrew will include this in his new patch:).

The problem more serious is how we prevent these things before commit.
> Regards,
>  Mark.
>
>   
>>>> Great, thank you to find this, Andrew. And don't need to say sorry, it's
>>>> me who takes responsibility on this and then owes the beer:-(.
>>>>         
>>> Out of curiosity, did either of you run the test suite on windows before
>>> offering the patch or committing it?  This isn't about "blame" or such,
>>> but about learning about how to make a better process....
>>>       
>> I did run luni and nio module test on both windows and linux, but security
>> module fails...
>>
>> It's a lesson for me. I'll pay more attention next time.
>>
>>
>>
>>     
>>> There's no harm done - it was found fast, and fixed fast, so kudos to
>>> you guys for working together on that.
>>>
>>> geir
>>>       
>
>
> ---------------------------------------------------------------------
> 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


Re: [continuum] BUILD FAILURE: Classlib/win.ia32 Build/Test

Posted by Mark Hindess <ma...@googlemail.com>.
On 3 August 2006 at 21:36, "Andrew Zhang" <zh...@gmail.com> wrote:
> 
> On 8/3/06, Geir Magnusson Jr <ge...@pobox.com> wrote:
> >
> > Paulex Yang wrote:
> > > Andrew Zhang wrote:
> > >> The failure is caused by Harmony-1040.
> > >> The updated hostEquals(URL u1, URL u2) introduces a new bug:
> > >> It returns true when u1.host = null and u2.host = "" while it should
> > >> return
> > >> false.
> > >
> > >> Sorry for the mistake caused by my patch. I'll update a new patch to
> > >> solve this problem.

Ideally we should also add a regression test to luni to catch this 
problem.  The fact that the problem wasn't caught means the current
luni don't have sufficient coverage so adding a test to luni would
help improve this.

I think we should always try to do this when a change in a module
passes that modules tests but fails another modules tests (as long
as it is reasonably practical to do so).

Regards,
 Mark.

> > > Great, thank you to find this, Andrew. And don't need to say sorry, it's
> > > me who takes responsibility on this and then owes the beer:-(.
> >
> > Out of curiosity, did either of you run the test suite on windows before
> > offering the patch or committing it?  This isn't about "blame" or such,
> > but about learning about how to make a better process....
> 
> 
> I did run luni and nio module test on both windows and linux, but security
> module fails...
> 
> It's a lesson for me. I'll pay more attention next time.
> 
> 
> 
> > There's no harm done - it was found fast, and fixed fast, so kudos to
> > you guys for working together on that.
> >
> > geir


---------------------------------------------------------------------
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: [continuum] BUILD FAILURE: Classlib/win.ia32 Build/Test

Posted by Andrew Zhang <zh...@gmail.com>.
On 8/3/06, Geir Magnusson Jr <ge...@pobox.com> wrote:

>
>
> Paulex Yang wrote:
> > Andrew Zhang wrote:
> >> The failure is caused by Harmony-1040.
> >> The updated hostEquals(URL u1, URL u2) introduces a new bug:
> >> It returns true when u1.host = null and u2.host = "" while it should
> >> return
> >> false.
> >
> >> Sorry for the mistake caused by my patch. I'll update a new patch to
> >> solve
> >> this problem.
> > Great, thank you to find this, Andrew. And don't need to say sorry, it's
> > me who takes responsibility on this and then owes the beer:-(.
> >
>
>
> Out of curiosity, did either of you run the test suite on windows before
> offering the patch or committing it?  This isn't about "blame" or such,
> but about learning about how to make a better process....


I did run luni and nio module test on both windows and linux, but security
module fails...

It's a lesson for me. I'll pay more attention next time.



> There's no harm done - it was found fast, and fixed fast, so kudos to
> you guys for working together on that.
>
> geir
>
> ---------------------------------------------------------------------
> 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
>
>


-- 
Andrew Zhang
China Software Development Lab, IBM

Re: [continuum] BUILD FAILURE: Classlib/win.ia32 Build/Test

Posted by Geir Magnusson Jr <ge...@pobox.com>.

Paulex Yang wrote:
> Andrew Zhang wrote:
>> The failure is caused by Harmony-1040.
>> The updated hostEquals(URL u1, URL u2) introduces a new bug:
>> It returns true when u1.host = null and u2.host = "" while it should
>> return
>> false.
> 
>> Sorry for the mistake caused by my patch. I'll update a new patch to
>> solve
>> this problem.
> Great, thank you to find this, Andrew. And don't need to say sorry, it's
> me who takes responsibility on this and then owes the beer:-(.
> 


Out of curiosity, did either of you run the test suite on windows before
offering the patch or committing it?  This isn't about "blame" or such,
but about learning about how to make a better process....

There's no harm done - it was found fast, and fixed fast, so kudos to
you guys for working together on that.

geir

---------------------------------------------------------------------
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: [continuum] BUILD FAILURE: Classlib/win.ia32 Build/Test

Posted by Paulex Yang <pa...@gmail.com>.
Andrew Zhang wrote:
> The failure is caused by Harmony-1040.
> The updated hostEquals(URL u1, URL u2) introduces a new bug:
> It returns true when u1.host = null and u2.host = "" while it should 
> return
> false.

> Sorry for the mistake caused by my patch. I'll update a new patch to 
> solve
> this problem.
Great, thank you to find this, Andrew. And don't need to say sorry, it's 
me who takes responsibility on this and then owes the beer:-(.

-- 
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


Re: [continuum] BUILD FAILURE: Classlib/win.ia32 Build/Test

Posted by Andrew Zhang <zh...@gmail.com>.
The failure is caused by Harmony-1040.
The updated hostEquals(URL u1, URL u2) introduces a new bug:
It returns true when u1.host = null and u2.host = "" while it should return
false.
Sorry for the mistake caused by my patch. I'll update a new patch to solve
this problem.

Thanks!

On 8/3/06, Paulex Yang <pa...@gmail.com> wrote:
>
> I'm looking at it, seems it is due to my commit about HARMONY-1040
> (r428264), I'll roll back it at first, and look more inside.
>
> Stepan Mishura wrote:
> > I'd suggest stop committing new code until the issue is resolved - two
> > security tests failed (see below)
> >
> > Thanks,
> > Stepan.
> >
> >
> > -----Original Message-----
> > From: Apache Harmony Build [mailto:nomail@hursley.ibm.com]
> > Sent: Thursday, August 03, 2006 3:19 PM
> > To: harmony-commits@incubator.apache.org
> > Subject: [continuum] BUILD FAILURE: Classlib/win.ia32 Build/Test
> >
> >
> >
> > Online report :
> >
> http://ibmonly.hursley.ibm.com/continuum/win.ia32/servlet/continuum/target/ProjectBuild.vm/view/ProjectBuild/id/6/buildId/2034
> >
> >
> > Build statistics:
> >
> >  State: Failed
> >
> >  Previous State: Ok
> >
> >  Started at: Thu, 3 Aug 2006 09:06:24 +0100
> >
> >  Finished at: Thu, 3 Aug 2006 09:18:14 +0100
> >
> >  Total time: 11m 50s
> >
> >  Build Trigger: Schedule
> >
> >  Exit code: 1
> >
> >  Building machine hostname: hy1
> >
> >  Operating system : Windows XP(Service Pack 2)
> >
> >  Java version : 1.5.0_06(Sun Microsystems Inc.)
> >
> >
> >
> > Changes
> >
> >
> >
> classlib\modules\luni\src\test\java\tests\api\java\net\InetSocketAddressTest.java
> >
> >
> >
> >
> classlib\modules\luni\src\test\java\tests\api\java\net\Inet6AddressTest.java
> >
> >
> >
> > classlib\modules\luni\src\test\java\tests\api\java\util\LocaleTest.java
> >
> >
> >
> classlib\modules\luni\src\test\resources\serialization\java\net\Inet6Address.golden.0.ser
> >
> >
> >
> >
> classlib\modules\luni\src\test\resources\serialization\java\net\Inet6Address.golden.1.ser
> >
> >
> >
> > classlib\modules\luni\src\main\java\java\net\InetSocketAddress.java
> >
> >
> > classlib\modules\luni\src\main\java\java\net\URLStreamHandler.java
> >
>
> >            classlib\modules\luni\src\main\java\java\net\Inet6Address.java
> >
> >
> >
> classlib\modules\luni\src\main\java\org\apache\harmony\luni\internal\locale\ISO3Languages.java
> >
> >
> >
> >
> classlib\modules\luni\src\main\java\org\apache\harmony\luni\internal\locale\ISO3Countries.java
> >
> >
> >
> >
> >
> ****************************************************************************
> >
> >
> > Output:
> >
> >
> ****************************************************************************
> >
> >
> > Buildfile: build.xml
> >
> > <SNIP>
> >
> >
> > [exec]     [junit] Tests run: 6, Failures: 1, Errors: 0, Time elapsed:
> > 0 sec
> >
> > [exec]     [junit] TEST
> > org.apache.harmony.security.tests.java.security.CodeSource2Test FAILED
> >
> > [exec]     [junit] Tests run: 26, Failures: 1, Errors: 0, Time elapsed:
> > 3.125 sec
> >
> > [exec]     [junit] TEST
> > org.apache.harmony.security.tests.java.security.CodeSourceTest FAILED
> >
> >
> > <SNIP>
> >
> > Thanks,
> > Stepan Mishura
> > Intel Middleware Products Division
> >
> > ------------------------------------------------------
> > 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
>
>


-- 
Andrew Zhang
China Software Development Lab, IBM

Re: [continuum] BUILD FAILURE: Classlib/win.ia32 Build/Test

Posted by Paulex Yang <pa...@gmail.com>.
I'm looking at it, seems it is due to my commit about HARMONY-1040 
(r428264), I'll roll back it at first, and look more inside.

Stepan Mishura wrote:
> I'd suggest stop committing new code until the issue is resolved - two
> security tests failed (see below)
>
> Thanks,
> Stepan.
>
>
> -----Original Message-----
> From: Apache Harmony Build [mailto:nomail@hursley.ibm.com]
> Sent: Thursday, August 03, 2006 3:19 PM
> To: harmony-commits@incubator.apache.org
> Subject: [continuum] BUILD FAILURE: Classlib/win.ia32 Build/Test
>
>
>
> Online report :
> http://ibmonly.hursley.ibm.com/continuum/win.ia32/servlet/continuum/target/ProjectBuild.vm/view/ProjectBuild/id/6/buildId/2034 
>
>
> Build statistics:
>
>  State: Failed
>
>  Previous State: Ok
>
>  Started at: Thu, 3 Aug 2006 09:06:24 +0100
>
>  Finished at: Thu, 3 Aug 2006 09:18:14 +0100
>
>  Total time: 11m 50s
>
>  Build Trigger: Schedule
>
>  Exit code: 1
>
>  Building machine hostname: hy1
>
>  Operating system : Windows XP(Service Pack 2)
>
>  Java version : 1.5.0_06(Sun Microsystems Inc.)
>
>
>
> Changes
>
>
> classlib\modules\luni\src\test\java\tests\api\java\net\InetSocketAddressTest.java 
>
>
>
> classlib\modules\luni\src\test\java\tests\api\java\net\Inet6AddressTest.java 
>
>
>
> classlib\modules\luni\src\test\java\tests\api\java\util\LocaleTest.java
>
>
> classlib\modules\luni\src\test\resources\serialization\java\net\Inet6Address.golden.0.ser 
>
>
>
> classlib\modules\luni\src\test\resources\serialization\java\net\Inet6Address.golden.1.ser 
>
>
>
> classlib\modules\luni\src\main\java\java\net\InetSocketAddress.java
>
>
> classlib\modules\luni\src\main\java\java\net\URLStreamHandler.java
>
>            classlib\modules\luni\src\main\java\java\net\Inet6Address.java
>
>
> classlib\modules\luni\src\main\java\org\apache\harmony\luni\internal\locale\ISO3Languages.java 
>
>
>
> classlib\modules\luni\src\main\java\org\apache\harmony\luni\internal\locale\ISO3Countries.java 
>
>
>
>
> **************************************************************************** 
>
>
> Output:
>
> **************************************************************************** 
>
>
> Buildfile: build.xml
>
> <SNIP>
>
>
> [exec]     [junit] Tests run: 6, Failures: 1, Errors: 0, Time elapsed: 
> 0 sec
>
> [exec]     [junit] TEST
> org.apache.harmony.security.tests.java.security.CodeSource2Test FAILED
>
> [exec]     [junit] Tests run: 26, Failures: 1, Errors: 0, Time elapsed:
> 3.125 sec
>
> [exec]     [junit] TEST
> org.apache.harmony.security.tests.java.security.CodeSourceTest FAILED
>
>
> <SNIP>
>
> Thanks,
> Stepan Mishura
> Intel Middleware Products Division
>
> ------------------------------------------------------
> 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