test/sun/rmi/rmic/RMIGenerator/RmicDefault.java

Print this page




  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25  * @bug 4236543
  26  * @summary rmic w/o -d should put class files in package directory
  27  * @author Dana Burns
  28  * @library ../../../../java/rmi/testlibrary
  29  *
  30  * @build StreamPipe
  31  * @run main RmicDefault
  32  */
  33 
  34 /*
  35  * Ensure that, in the absence of a -d argument, rmic will deposit
  36  * the generated class files in the package directory as opposed
  37  * to the old behaviour of depositing them in the local directory.
  38  * JavaTest/jtreg does not support setting the classpath yet, so do
  39  * the javac directly.
  40  */
  41 
  42 import java.io.File;
  43 import java.io.IOException;
  44 
  45 public class RmicDefault {
  46     public static void main(String args[]) throws Exception {
  47         String javahome = System.getProperty("java.home");
  48         String testclasses = System.getProperty("test.classes");
  49         String userDir = System.getProperty("user.dir");
  50 
  51         if (javahome.regionMatches(true, javahome.length() - 4,




  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25  * @bug 4236543
  26  * @summary rmic w/o -d should put class files in package directory
  27  * @author Dana Burns
  28  * @library ../../../../java/rmi/testlibrary
  29  *
  30  * @build StreamPipe
  31  * @run main/othervm RmicDefault
  32  */
  33 
  34 /*
  35  * Ensure that, in the absence of a -d argument, rmic will deposit
  36  * the generated class files in the package directory as opposed
  37  * to the old behaviour of depositing them in the local directory.
  38  * JavaTest/jtreg does not support setting the classpath yet, so do
  39  * the javac directly.
  40  */
  41 
  42 import java.io.File;
  43 import java.io.IOException;
  44 
  45 public class RmicDefault {
  46     public static void main(String args[]) throws Exception {
  47         String javahome = System.getProperty("java.home");
  48         String testclasses = System.getProperty("test.classes");
  49         String userDir = System.getProperty("user.dir");
  50 
  51         if (javahome.regionMatches(true, javahome.length() - 4,