X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Ftests%2FEnv.java;h=a22f6a87a1a25a2299ca7e8be0c2e2ec1991d8c3;hb=bd37ef12130e7b21c7b5fa4c200f332f9490c4d2;hp=59048b527e0c8140ab29b6971ff3c80ee881b185;hpb=3eb15f58ca0911489d7d9bdc0ac2c575d27a68d8;p=nestedvm.git diff --git a/src/tests/Env.java b/src/tests/Env.java index 59048b5..a22f6a8 100644 --- a/src/tests/Env.java +++ b/src/tests/Env.java @@ -1,7 +1,10 @@ +// Copyright 2000-2005 the Contributors, as shown in the revision logs. +// Licensed under the Apache Public Source License 2.0 ("the License"). +// You may not use this file except in compliance with the License. + package tests; -import org.xwt.mips.Runtime; -import org.xwt.mips.Interpreter; +import org.ibex.nestedvm.Runtime; class Env { public static void main(String[] args) throws Exception { @@ -21,7 +24,7 @@ class Env { Runtime rt; if(className.endsWith(".mips")) { - rt = new Interpreter(className); + rt = new org.ibex.nestedvm.Interpreter(className); } else { Class c = Class.forName(className); if(!Runtime.class.isAssignableFrom(c)) { System.err.println(className + " isn't a MIPS compiled class"); System.exit(1); }