Return-Path: Delivered-To: apmail-incubator-harmony-commits-archive@www.apache.org Received: (qmail 18589 invoked from network); 11 Oct 2006 08:27:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 11 Oct 2006 08:27:02 -0000 Received: (qmail 7019 invoked by uid 500); 11 Oct 2006 08:27:01 -0000 Delivered-To: apmail-incubator-harmony-commits-archive@incubator.apache.org Received: (qmail 6994 invoked by uid 500); 11 Oct 2006 08:27:01 -0000 Mailing-List: contact harmony-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: harmony-dev@incubator.apache.org Delivered-To: mailing list harmony-commits@incubator.apache.org Received: (qmail 6983 invoked by uid 99); 11 Oct 2006 08:27:01 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Oct 2006 01:27:01 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [209.237.227.198] (HELO brutus.apache.org) (209.237.227.198) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Oct 2006 01:27:00 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id A25897142DD for ; Wed, 11 Oct 2006 01:26:20 -0700 (PDT) Message-ID: <33184378.1160555180662.JavaMail.root@brutus> Date: Wed, 11 Oct 2006 01:26:20 -0700 (PDT) From: "Oliver Deakin (JIRA)" To: harmony-commits@incubator.apache.org Subject: [jira] Updated: (HARMONY-1818) [drlvm] VM throws NullPointerException in case java.class.path is not set In-Reply-To: <31477038.1160550979528.JavaMail.root@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/HARMONY-1818?page=all ] Oliver Deakin updated HARMONY-1818: ----------------------------------- Attachment: SysInfo.java simpleLaunch.c I am attaching the basic java launcher and the java class described in my post to the -dev list quoted above. > [drlvm] VM throws NullPointerException in case java.class.path is not set > ------------------------------------------------------------------------- > > Key: HARMONY-1818 > URL: http://issues.apache.org/jira/browse/HARMONY-1818 > Project: Harmony > Issue Type: Improvement > Environment: All > Reporter: Evgueni Brevnov > Attachments: simpleLaunch.c, SysInfo.java > > > Evgueni Brevnov to harmony-dev > Hi All, > Currently DRLVM starts with help of the launcher. The launcher does a > lot of stuff required to create VM instatnce. As a part of its job it > sets up java.class.path property. And this is good. What is not good > that DRLVM crashes (actually throws NullPointerException in > initalization stage) if java.class.path is not set. I believe it makes > sense to point java.class.path to current directory inside VM if > launcher doesn't set it. > Oliver Deakin to harmony-dev > I have just tried launching the RI with a simple launcher (very basic - > CreateJavaVM(), > finds and launches a class, then calls DestroyJavaVM()). The launcher > does not > set java.class.path, and executes the main method of the following class: > public class SysInfo { > public static void main(String[] args) { > System.getProperties().list(System.out); > } > } > The java.class.path value is printed as: > java.class.path= > So it appears that java.class.path property is left empty by default. > However, > to have found the SysInfo class, the RI must have searched in the current > directory. I can also instantiate other classes that are located in the > current > directory. So although the java.class.path is set to an empty string, > internally > there is a default inclusion of the current directory. > IMHO we follow the RI behaviour here, and have an implicit inclusion of > the current directory unless the classpath is explicitly set. > Regards, > Oliver -- 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