view mxtool/ClasspathDump.java @ 17018:e91533b86166

[SPARC] Fix dacapo sunflow test (Unordered branching is now implemented right)
author Stefan Anzinger <stefan.anzinger@oracle.com>
date Thu, 28 Aug 2014 19:24:52 -0700
parents a6bd486b1b44
children
line wrap: on
line source

public class ClasspathDump {
    public static void main(String[] args) {
        System.out.print(System.getProperty("sun.boot.class.path"));
        System.out.print("|");
        System.out.print(System.getProperty("java.ext.dirs"));
        System.out.print("|");
        System.out.print(System.getProperty("java.endorsed.dirs"));
    }
}