comparison graal/com.oracle.truffle.api.test/src/com/oracle/truffle/api/test/vm/TruffleVMSingleThreadedTest.java @ 21554:b1530a6cce8c

renamed com.oracle.graal.[debug|options|hotspotvmconfig]* modules to com.oracle.jvmci.[debug|options|hotspotvmconfig]* modules (JBS:GRAAL-53)
author Doug Simon <doug.simon@oracle.com>
date Tue, 26 May 2015 23:21:15 +0200
parents 99942eac9c6d
children 31fc2fce38f3
comparison
equal deleted inserted replaced
21553:0910a9497b02 21554:b1530a6cce8c
20 * or visit www.oracle.com if you need additional information or have any 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 */ 22 */
23 package com.oracle.truffle.api.test.vm; 23 package com.oracle.truffle.api.test.vm;
24 24
25 import com.oracle.truffle.api.vm.TruffleVM; 25 import java.io.*;
26 import java.io.IOException; 26 import java.net.*;
27 import java.io.StringReader; 27
28 import java.net.URI; 28 import org.junit.*;
29 import java.net.URISyntaxException; 29
30 import org.junit.Before; 30 import com.oracle.truffle.api.vm.*;
31 import org.junit.Test;
32 31
33 public class TruffleVMSingleThreadedTest { 32 public class TruffleVMSingleThreadedTest {
34 TruffleVM tvm; 33 TruffleVM tvm;
35 34
36 @Before 35 @Before