Re: [testing][kernel.tests] j.l.Thread test fails on HARMONY-1582

2006-10-10 Thread Nikolay Kuznetsov
I have finished running release build on WinXP, and I have following tests results: c_unit tests passed; smoke tests passed, but I have excluded gc.Los; kernel tests works with the 98.96 % success rate on all, jitrino.jet, opt and interpreter. Failing tests are: j.l.ObjectTest, j.l.RuntimeTest2,

Re: [testing][kernel.tests] j.l.Thread test fails on HARMONY-1582

2006-10-10 Thread Elena Semukhina
I'm going to take care of j.l.ThreadTest. On 10/10/06, Nikolay Kuznetsov [EMAIL PROTECTED] wrote: I have finished running release build on WinXP, and I have following tests results: c_unit tests passed; smoke tests passed, but I have excluded gc.Los; kernel tests works with the 98.96 % success

Re: [testing][kernel.tests] j.l.Thread test fails on HARMONY-1582

2006-10-10 Thread Nikolay Kuznetsov
Elena, thanks for the help, the problem discovered by ThreadTest explained in HARMONY-1789. Are you going to fix the issue or investigate test failures? Thank you. Nik. On 10/10/06, Elena Semukhina [EMAIL PROTECTED] wrote: I'm going to take care of j.l.ThreadTest. On 10/10/06, Nikolay

Re: [testing][kernel.tests] j.l.Thread test fails on HARMONY-1582

2006-10-10 Thread Elena Semukhina
Nikolay, I thought that it was the problem in the test so I volunteered to fix it but now I see that this is hythread issue so please fix it asap! BTW, I see a lot of new classlib tests failures related to this bug. I updated H-1789 with instructions how to reproduce this. On 10/10/06,

Re: [testing][kernel.tests] j.l.Thread test fails on HARMONY-1582

2006-10-10 Thread Nikolay Kuznetsov
I'm looking into this. Nik. On 10/10/06, Elena Semukhina [EMAIL PROTECTED] wrote: Nikolay, I thought that it was the problem in the test so I volunteered to fix it but now I see that this is hythread issue so please fix it asap! BTW, I see a lot of new classlib tests failures related to this

Re: [testing][kernel.tests] j.l.Thread test fails on HARMONY-1582

2006-10-09 Thread Evgueni Brevnov
BTW, it seems Thread.interrupt() doesn't clear thread's interrupt status as spec states. Could we add such test cases as well Evgueni On 10/9/06, Evgueni Brevnov [EMAIL PROTECTED] wrote: Hi, While testing HARMONY-1582 (invocation api) it turned out that one kernel test starts to fail with

Re: [testing][kernel.tests] j.l.Thread test fails on HARMONY-1582

2006-10-09 Thread Nikolay Kuznetsov
Evgueni, according to the spec the thread wait method should throw interrupted exception even if it was interrupted before call. citing from the Object.wait method specification: Throws: InterruptedException - if another thread interrupted the current thread before or while the current thread

Re: [testing][kernel.tests] j.l.Thread test fails on HARMONY-1582

2006-10-09 Thread Evgueni Brevnov
Ok, I see. Then it should be TM problem right? On 10/9/06, Nikolay Kuznetsov [EMAIL PROTECTED] wrote: Evgueni, according to the spec the thread wait method should throw interrupted exception even if it was interrupted before call. citing from the Object.wait method specification: Throws:

Re: [testing][kernel.tests] j.l.Thread test fails on HARMONY-1582

2006-10-09 Thread Nikolay Kuznetsov
No it should not, but it is :). Look like there is no synchronization between setting interrupted flag and checking it, thus one may interrupt the thread between flag checking and actual wait, I will raise JIRA issue on this. Thank you. Nik. On 10/9/06, Evgueni Brevnov [EMAIL PROTECTED]

Re: [testing][kernel.tests] j.l.Thread test fails on HARMONY-1582

2006-10-09 Thread Nikolay Kuznetsov
I'm running debug build on WinXP, and I have following results so far: c_unit tests passed; smoke tests passed except gc.Los which hangs as usual; kernel tests works with the following success rates: Jet : 98.96% Opt: 99.15% Int : still running Thank you. Nik. On 10/9/06, Geir Magnusson