Re: svn commit: r512802 - /harmony/enhanced/drlvm/trunk/build/build.bat

2007-02-28 Thread Stepan Mishura
Hi Gregory, Your commit broke my script for building snapshot :-) What I should do if Mirosoft Visual Studio is located on D:? Thanks, Stepan. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 28, 2007 9:31 PM To: [EMAIL PROTECTED] Subject:

Re: svn commit: r512830 [1/2] - in /harmony/enhanced/classlib/trunk/modules/jndi: make/ src/main/java/javax/naming/ldap/ src/main/java/org/apache/harmony/jndi/internal/tls/config/ src/test/java/org/ap

2007-02-28 Thread Tony Wu
Thanks Stepan, it works. On 3/1/07, Stepan Mishura <[EMAIL PROTECTED]> wrote: On 3/1/07, Tony Wu <[EMAIL PROTECTED]> wrote: > > I got following error after this commit. seems the removed ClassFinder > is still referenced by JarFinder and DirFinder. Fixed at r513119. -Stepan. [javac] 1. ERR

Re: svn commit: r512830 [1/2] - in /harmony/enhanced/classlib/trunk/modules/jndi: make/ src/main/java/javax/naming/ldap/ src/main/java/org/apache/harmony/jndi/internal/tls/config/ src/test/java/org/ap

2007-02-28 Thread Stepan Mishura
On 3/1/07, Tony Wu <[EMAIL PROTECTED]> wrote: I got following error after this commit. seems the removed ClassFinder is still referenced by JarFinder and DirFinder. Fixed at r513119. -Stepan. [javac] 1. ERROR in /home/clear/trunk/modules/jndi/src/main/java/org/apache/harmony/jndi/intern

Re: [classlib][jndi]anyone see this compile error?

2007-02-28 Thread Nathan Beyer
I'd vote for deleting any extraneous AllTests files. On 2/28/07, Alexei Zakharov <[EMAIL PROTECTED]> wrote: > I think the AllTest makes sense only when some one want to run test > suites partly. I had never used it but I'm not sure if there is > somebody who perfer that way. Well, seems AllTest

Re: [classlib][test]how to set up a http proxy server for unit test.

2007-02-28 Thread Tony Wu
Thanks Alexei, that's not a bad idea, we can find all TODOs in exclude lists rather than src code. I'll try if no one object. On 2/28/07, Alexei Zakharov <[EMAIL PROTECTED]> wrote: Hi Tony, IIRC we have agreed that commenting out test code is not the best possible solution. Can we just split o

Re: [drlvm] Fwd: [jira] Updated: (HARMONY-2803) stress.Mix hangs on RHEL4 update 4

2007-02-28 Thread Naveen Neelakantam
On Feb 28, 2007, at 3:40 PM, Weldon Washburn wrote: Naveen, 1) I tried Mix.java.load.patch on my 2-way Linux box. It hangs consistently. 2) I tried the svn HEAD version of Mix.java. I can't get it to fail. Can you do an "svn update" and see if the baseline Mix.java causes your regres

Re: [drlvm] Fwd: [jira] Updated: (HARMONY-2803) stress.Mix hangs on RHEL4 update 4

2007-02-28 Thread Weldon Washburn
Naveen, 1) I tried Mix.java.load.patch on my 2-way Linux box. It hangs consistently. 2) I tried the svn HEAD version of Mix.java. I can't get it to fail. Can you do an "svn update" and see if the baseline Mix.java causes your regression tests to hang? My guess is that Mix.java.load.patch is s

Re: [drlvm][reliability tests] Harmony-2986, Dekker's algorithm -- is this a valid test for modern SMP hardware?

2007-02-28 Thread Gregory Shimansky
On Wednesday 28 February 2007 23:28 Weldon Washburn wrote: > On 2/28/07, Gregory Shimansky <[EMAIL PROTECTED]> wrote: > > Weldon Washburn wrote: > > > On second thought, the only way I know to implement volatile long > > > > (64-bit) > > > > > Java variables on ia32 is: > > > > > > grab critical se

Re: [drlvm][reliability tests] Harmony-2986, Dekker's algorithm -- is this a valid test for modern SMP hardware?

2007-02-28 Thread Weldon Washburn
On 2/28/07, Gregory Shimansky <[EMAIL PROTECTED]> wrote: Weldon Washburn wrote: > On second thought, the only way I know to implement volatile long (64-bit) > Java variables on ia32 is: > > grab critical section > mov [ecx], low32bits; // to do a write, the code for doing a read is > similar >

Re: [drlvm][jit] Fwd: [jira] Created: (HARMONY-3222) assertion fires with DaCapo eclipse (jitrino built in debug)

2007-02-28 Thread Pavel Ozhdikhin
Thanks, Alexey! Now I don't need to patch the build after every checkout! :) -Pavel On 2/28/07, Naveen Neelakantam <[EMAIL PROTECTED]> wrote: Thanks Alexey! I'll share the blame if it comes to that. :-) Naveen On Feb 28, 2007, at 10:37 AM, Alexey Varlamov wrote: > So far I've found just

Re: [drlvm][jit] Fwd: [jira] Created: (HARMONY-3222) assertion fires with DaCapo eclipse (jitrino built in debug)

2007-02-28 Thread Naveen Neelakantam
Thanks Alexey! I'll share the blame if it comes to that. :-) Naveen On Feb 28, 2007, at 10:37 AM, Alexey Varlamov wrote: So far I've found just one unknown failure on debug version of Jitrino (curiuos one btw, see Harmony-3266), so switched to genuine debug at r512751. The pass rate of drlvm

Re: [drlvm][jit] Fwd: [jira] Created: (HARMONY-3222) assertion fires with DaCapo eclipse (jitrino built in debug)

2007-02-28 Thread Alexey Varlamov
So far I've found just one unknown failure on debug version of Jitrino (curiuos one btw, see Harmony-3266), so switched to genuine debug at r512751. The pass rate of drlvm and classlib tests should not degrade, yet new failures may appear on other workloads - I just hope to avoid blames. ;) I will

[testing] The results of reliability tests running on DRLVM

2007-02-28 Thread Petrashkova, Vera Y
Hi everyone, Reliability tests from https://issues.apache.org/jira/browse/HARMONY-2918 were run on DRLVM. I added the results of these tests running and tests failures analysis to http://wiki.apache.org/harmony/Reliability_Tests_on_DRLVM as the part of DRLVM Test Tracking (http://wiki.apa

Re: [drlvm][reliability tests] Harmony-2986, Dekker's algorithm -- is this a valid test for modern SMP hardware?

2007-02-28 Thread Gregory Shimansky
Weldon Washburn wrote: On second thought, the only way I know to implement volatile long (64-bit) Java variables on ia32 is: grab critical section mov [ecx], low32bits; // to do a write, the code for doing a read is similar mov[ecx+4], hi32bits; release critical section Is it possible for 64

RE: Netbeans addresses RI-specific fields

2007-02-28 Thread Zakharov, Vasily M
Ok, thanks. I wonder, how should stub methods (for 3.) be implemented? Should they return null, or throw java.lang.UnsupportedOperationException or throw org.apache.harmony.luni.util.NotImplementedException? Vasily -Original Message- From: Alexey Petrenko [mailto:[EMAIL PROTECTED] Se

Re: Netbeans addresses RI-specific fields

2007-02-28 Thread Alexey Petrenko
I agree with such kind of resolution. SY, Alexey 2007/2/28, Zakharov, Vasily M <[EMAIL PROTECTED]>: Hi, all, I'm trying to run Netbeans on Harmony, and found an issue that I'm not sure how to deal with. Netbeans addresses private fields (JEditorPane.kitRegistryKey, JEditorPane.kitTypeRegistry

RE: problems using jira

2007-02-28 Thread Morozova, Nadezhda
Yop, works for me! Cheers, Nadya >-Original Message- >From: Pavlenko, Andrey A [mailto:[EMAIL PROTECTED] >Sent: Wednesday, February 28, 2007 3:14 PM >To: dev@harmony.apache.org >Subject: RE: problems using jira > >JIRA is alive again! > >-Original Message- >From: Morozova, Nadez

RE: problems using jira

2007-02-28 Thread Pavlenko, Andrey A
JIRA is alive again! -Original Message- From: Morozova, Nadezhda [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 28, 2007 3:02 PM To: dev@harmony.apache.org Subject: problems using jira Hi, I haven't been able to use JIRA today, the service is temporarily unavailable. Am I the only o

RE: problems using jira

2007-02-28 Thread Konovalova, Svetlana
You are not the only one. I have the same problem. :( Best regards, Sveta -Original Message- From: Morozova, Nadezhda [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 28, 2007 3:02 PM To: dev@harmony.apache.org Subject: problems using jira Hi, I haven't been able to use JIRA today, t

problems using jira

2007-02-28 Thread Morozova, Nadezhda
Hi, I haven't been able to use JIRA today, the service is temporarily unavailable. Am I the only one seeing this? Cheers, Nadya

[classlib][awt] JUnit AWT TestRunner: menu should disappear after pressing "ALT" key

2007-02-28 Thread Pavlenko, Andrey A
Hi folks, I've a question concerning the JIRA HARMONY-2265. I've verified the scenario, mentioned in this issue, on Windows and Linux and found out that on Linux RI behaves the same as Harmony and it also does not show/hide menu after pressing Alt. As far as I understand, RI maps a menu to a real

Netbeans addresses RI-specific fields

2007-02-28 Thread Zakharov, Vasily M
Hi, all, I'm trying to run Netbeans on Harmony, and found an issue that I'm not sure how to deal with. Netbeans addresses private fields (JEditorPane.kitRegistryKey, JEditorPane.kitTypeRegistryKey) and classes (sun.awt.AppContext) existing in RI only. The code containing those references is gene

[drlvm]fix comments in vmcore external interface headers

2007-02-28 Thread Konovalova, Svetlana
>You can get involved in one of the following areas or open new JIRAs >with your own suggestions/fixes: Trying to improve scarce comments in VM Core external interface headers, I've opened the following JIRAs with improvement suggestions: [1] http://issues.apache.org/jira/browse/HARMONY-3262

Re: [classlib][test]how to set up a http proxy server for unit test.

2007-02-28 Thread Alexei Zakharov
Hi Tony, IIRC we have agreed that commenting out test code is not the best possible solution. Can we just split off proxy-related tests into a separate test class (ProxyTest for example) and then put this new class to exclude list? Thanks, 2007/2/27, Tony Wu <[EMAIL PROTECTED]>: Hello all, I h

Re: [classlib][jndi]anyone see this compile error?

2007-02-28 Thread Alexei Zakharov
I think the AllTest makes sense only when some one want to run test suites partly. I had never used it but I'm not sure if there is somebody who perfer that way. Well, seems AllTest is a history now. It doesn't make use of exclude lists and etc. Moreover, some modules does not support it - i.e.