You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Vladimir Beliaev (JIRA)" <ji...@apache.org> on 2006/11/24 14:30:05 UTC

[jira] Commented: (HARMONY-1756) Dynamic class loading work incorrectly

    [ http://issues.apache.org/jira/browse/HARMONY-1756?page=comments#action_12452449 ] 
            
Vladimir Beliaev commented on HARMONY-1756:
-------------------------------------------

I failed to reproduce this issue on Windows/IA32 (as was reported) on today version of DRLVM. 

Both old version (as Geir wrote) and new one are not reproducible:

For old version On Windows/IA32 with JAVA_HOME unset (from cygwin): 
- version: svn = r478828, (Nov 24 2006), Windows/ia32/msvc 1310, debug build
- command: ./working_vm/build/deploy/jre/bin/java \
                       -cp ".;working_vm/build/make/tmp/junit.jar" \
                       junit.textui.TestRunner Bug
- log: 
    .Check point
    PASSED
    Time: 0.01
    OK (1 test)

For new version On Windows/IA32 with JAVA_HOME unset (from cygwin): 
- version: svn = r478828, (Nov 24 2006), Windows/ia32/msvc 1310, debug build
- command: ./working_vm/build/deploy/jre/bin/java Jira1756
- log:
    Check point
    PASSED

Output is identical to RI 1.5 one.

So the issue is either not reproducible or more information required for reproduction. 

Thanks 
Vladimir 

> Dynamic class loading work incorrectly
> --------------------------------------
>
>                 Key: HARMONY-1756
>                 URL: http://issues.apache.org/jira/browse/HARMONY-1756
>             Project: Harmony
>          Issue Type: Bug
>          Components: DRLVM
>            Reporter: Nikolay Chugunov
>
> Dynamic class loading work incorrectly:
> Code for reproduction:
> import java.io.FileInputStream;
> import java.io.IOException;
> import java.io.InputStream;
> import junit.framework.TestCase;
> public class Bug extends TestCase {
>     private static String className = "EmptyClass";
>     public void test() throws Exception {
>         MyClassLoader classLoader = new MyClassLoader();
>         System.out.println("Check point");
>         classLoader.loadClass(className).newInstance();
>         System.out.println("PASSED");
>     }
>     private class MyClassLoader extends ClassLoader {
>         private MyClassLoader() throws IOException {
>             InputStream in = new FileInputStream(
>                 "C:\\" + className + ".class");
>             byte[] b = new byte[in.available()];
>             in.read(b);
>             in.close();
>             defineClass(className, b, 0, b.length);
>         }
>     }
> }
> public class EmptyClass{
> }
> To reproduce compile classes and then move EmptyClass class to
> C:\ directory which is not in class path and then run this test.
> Output on RI 1.5:
> Check point
> PASSED
> Output on Harmony r450941:
> Check point
> java.lang.ClassNotFoundException: Can not find class EmptyClass
> 	at java.lang.ClassLoader.findClass(Unknown Source)
> 	at java.lang.ClassLoader.loadClass(Unknown Source)
> 	at java.lang.ClassLoader.loadClass(Unknown Source)
> 	at Bug.test(Bug.java:15)

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira