Skip to content

Commit

Permalink
sulong: rename test packages
Browse files Browse the repository at this point in the history
  • Loading branch information
zapster committed Jul 22, 2019
1 parent de0733d commit 61bf367
Show file tree
Hide file tree
Showing 79 changed files with 158 additions and 158 deletions.
16 changes: 8 additions & 8 deletions sulong/mx.sulong/mx_sulong.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def _decode(x):
join(_suite.dir, "include"),
join(_root, "com.oracle.truffle.llvm.libraries.bitcode", "src"),
join(_root, "com.oracle.truffle.llvm.libraries.bitcode", "include"),
join(_root, "com.oracle.truffle.llvm.pipe.native", "src"),
join(_root, "com.oracle.truffle.llvm.tests.pipe.native", "src"),
join(_testDir, "com.oracle.truffle.llvm.tests.sulong"),
join(_testDir, "com.oracle.truffle.llvm.tests.sulongcpp"),
join(_testDir, "interoptests"),
Expand Down Expand Up @@ -165,7 +165,7 @@ def _sulong_gate_runner(args, tasks):
with Task('ClangFormat', tasks, tags=['style', 'clangformat']) as t:
if t: clangformatcheck()
_sulong_gate_testsuite('Benchmarks', 'shootout', tasks, args, tags=['benchmarks', 'sulongMisc'])
_sulong_gate_unittest('Types', 'SULONG_TEST', tasks, args, tags=['type', 'sulongMisc', 'sulongCoverage'], testClasses=['com.oracle.truffle.llvm.types.floating.test'])
_sulong_gate_unittest('Types', 'SULONG_TEST', tasks, args, tags=['type', 'sulongMisc', 'sulongCoverage'], testClasses=['com.oracle.truffle.llvm.tests.types.floating'])
_sulong_gate_unittest('Pipe', 'SULONG_TEST', tasks, args, tags=['pipe', 'sulongMisc', 'sulongCoverage'], testClasses=['CaptureOutputTest'])
_sulong_gate_testsuite('LLVM', 'llvm', tasks, args, tags=['llvm', 'sulongCoverage'])
_sulong_gate_testsuite('NWCC', 'nwcc', tasks, args, tags=['nwcc', 'sulongCoverage'])
Expand All @@ -174,15 +174,15 @@ def _sulong_gate_runner(args, tasks):
_sulong_gate_testsuite('GCC_CPP', 'gcc_cpp', tasks, args, tags=['gcc_cpp', 'sulongCoverage'])
_sulong_gate_testsuite('GCC_Fortran', 'gcc_fortran', tasks, args, tags=['gcc_fortran', 'sulongCoverage'])
_sulong_gate_sulongsuite_unittest('Sulong', tasks, args, testClasses='SulongSuite', tags=['sulong', 'sulongBasic', 'sulongCoverage'])
_sulong_gate_sulongsuite_unittest('Interop', tasks, args, testClasses='com.oracle.truffle.llvm.test.interop', tags=['interop', 'sulongBasic', 'sulongCoverage'])
_sulong_gate_sulongsuite_unittest('Interop', tasks, args, testClasses='com.oracle.truffle.llvm.tests.interop', tags=['interop', 'sulongBasic', 'sulongCoverage'])
_sulong_gate_sulongsuite_unittest('Debug', tasks, args, testClasses='LLVMDebugTest', tags=['debug', 'sulongBasic', 'sulongCoverage'])
_sulong_gate_sulongsuite_unittest('IRDebug', tasks, args, testClasses='LLVMIRDebugTest', tags=['irdebug', 'sulongBasic', 'sulongCoverage'])
_sulong_gate_sulongsuite_unittest('BitcodeFormat', tasks, args, testClasses='BitcodeFormatTest', tags=['bitcodeFormat', 'sulongBasic', 'sulongCoverage'])
_sulong_gate_sulongsuite_unittest('OtherTests', tasks, args, testClasses='com.oracle.truffle.llvm.test.other', tags=['otherTests', 'sulongBasic', 'sulongCoverage'])
_sulong_gate_sulongsuite_unittest('OtherTests', tasks, args, testClasses='com.oracle.truffle.llvm.tests.other', tags=['otherTests', 'sulongBasic', 'sulongCoverage'])
_sulong_gate_testsuite('Assembly', 'inlineassemblytests', tasks, args, testClasses='InlineAssemblyTest', tags=['assembly', 'sulongCoverage'])
_sulong_gate_testsuite('Args', 'other', tasks, args, tags=['args', 'sulongMisc', 'sulongCoverage'], testClasses=['com.oracle.truffle.llvm.test.MainArgsTest'])
_sulong_gate_testsuite('Callback', 'other', tasks, args, tags=['callback', 'sulongMisc', 'sulongCoverage'], testClasses=['com.oracle.truffle.llvm.test.CallbackTest'])
_sulong_gate_testsuite('Varargs', 'other', tasks, args, tags=['vaargs', 'sulongMisc', 'sulongCoverage'], testClasses=['com.oracle.truffle.llvm.test.VAArgsTest'])
_sulong_gate_testsuite('Args', 'other', tasks, args, tags=['args', 'sulongMisc', 'sulongCoverage'], testClasses=['com.oracle.truffle.llvm.tests.MainArgsTest'])
_sulong_gate_testsuite('Callback', 'other', tasks, args, tags=['callback', 'sulongMisc', 'sulongCoverage'], testClasses=['com.oracle.truffle.llvm.tests.CallbackTest'])
_sulong_gate_testsuite('Varargs', 'other', tasks, args, tags=['vaargs', 'sulongMisc', 'sulongCoverage'], testClasses=['com.oracle.truffle.llvm.tests.VAArgsTest'])
with Task('TestToolchain', tasks, tags=['toolchain', 'sulongMisc', 'sulongCoverage']) as t:
if t:
mx.command_function('clean')(['--project', 'toolchain-launchers-tests'] + args.extra_build_args)
Expand Down Expand Up @@ -243,7 +243,7 @@ def runLLVMUnittests(unittest_runner):

run_args = [libpath, libs] + java_run_props
build_args = ['--language:llvm'] + java_run_props
unittest_runner(['com.oracle.truffle.llvm.test.interop', '--run-args'] + run_args +
unittest_runner(['com.oracle.truffle.llvm.tests.interop', '--run-args'] + run_args +
['--build-args', '--initialize-at-build-time'] + build_args)


Expand Down
2 changes: 1 addition & 1 deletion sulong/mx.sulong/mx_testsuites.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ def runTestSuite(self, testClasses=None, vmArgs=None):
return run(vmArgs, testClasses)

def defaultTestClasses(self):
return ["com.oracle.truffle.llvm.test.GCCSuite"]
return ["com.oracle.truffle.llvm.tests.GCCSuite"]

def getTestFile(self):
if not hasattr(self, '_testfile'):
Expand Down
8 changes: 4 additions & 4 deletions sulong/mx.sulong/suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@
"parserTorture" : {
"subDir" : "tests/gcc",
"class" : "ExternalTestSuite",
"testClasses" : ["com.oracle.truffle.llvm.test.ParserTortureSuite"],
"testClasses" : ["com.oracle.truffle.llvm.tests.ParserTortureSuite"],
"testDir" : "gcc-5.2.0/gcc/testsuite/gcc.c-torture/compile",
"configDir" : "configs/gcc.c-torture/compile",
"fileExts" : [".c"],
Expand All @@ -756,7 +756,7 @@
"llvm" : {
"subDir" : "tests/llvm",
"class" : "ExternalTestSuite",
"testClasses" : ["com.oracle.truffle.llvm.test.LLVMSuite"],
"testClasses" : ["com.oracle.truffle.llvm.tests.LLVMSuite"],
"testDir" : "test-suite-3.2.src",
"fileExts" : [".c", ".cpp", ".C", ".cc", ".m"],
"native" : True,
Expand All @@ -778,7 +778,7 @@
"shootout" : {
"subDir" : "tests/benchmarksgame",
"class" : "ExternalTestSuite",
"testClasses" : ["com.oracle.truffle.llvm.test.ShootoutsSuite"],
"testClasses" : ["com.oracle.truffle.llvm.tests.ShootoutsSuite"],
"testDir" : "benchmarksgame-2014-08-31/benchmarksgame/bench/",
"fileExts" : [".c", ".cpp", ".C", ".cc", ".m", ".gcc", ".cint", ".gpp"],
"native" : True,
Expand All @@ -802,7 +802,7 @@
"nwcc" : {
"subDir" : "tests/nwcc",
"class" : "ExternalTestSuite",
"testClasses" : ["com.oracle.truffle.llvm.test.NWCCSuite"],
"testClasses" : ["com.oracle.truffle.llvm.tests.NWCCSuite"],
"testDir" : "nwcc_0.8.3",
"fileExts" : [".c"],
"native" : True,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <jni.h>
#include "com_oracle_truffle_llvm_pipe_CaptureNativeOutput.h"
#include "com_oracle_truffle_llvm_tests_pipe_CaptureNativeOutput.h"

#include <unistd.h>
#include <fcntl.h>
Expand All @@ -47,7 +47,7 @@ static bool check_error(JNIEnv *env, int ret) {
}
}

JNIEXPORT jint JNICALL Java_com_oracle_truffle_llvm_pipe_CaptureNativeOutput_startCapturing(JNIEnv *env, jclass self, jint stdFd, jstring filename) {
JNIEXPORT jint JNICALL Java_com_oracle_truffle_llvm_tests_pipe_CaptureNativeOutput_startCapturing(JNIEnv *env, jclass self, jint stdFd, jstring filename) {
const char *path = env->GetStringUTFChars(filename, NULL);

int fd = open(path, O_WRONLY);
Expand All @@ -74,17 +74,17 @@ JNIEXPORT jint JNICALL Java_com_oracle_truffle_llvm_pipe_CaptureNativeOutput_sta
return oldFd;
}

JNIEXPORT void JNICALL Java_com_oracle_truffle_llvm_pipe_CaptureNativeOutput_stopCapturing(JNIEnv *env, jclass self, jint oldStdOut, jint oldStdErr) {
JNIEXPORT void JNICALL Java_com_oracle_truffle_llvm_tests_pipe_CaptureNativeOutput_stopCapturing(JNIEnv *env, jclass self, jint oldStdOut, jint oldStdErr) {
if (check_error(env, fflush(stdout))) {
return;
}
if (check_error(env, fflush(stderr))) {
return;
}
if (check_error(env, dup2(oldStdOut, com_oracle_truffle_llvm_pipe_CaptureNativeOutput_STDOUT))) {
if (check_error(env, dup2(oldStdOut, com_oracle_truffle_llvm_tests_pipe_CaptureNativeOutput_STDOUT))) {
return;
}
if (check_error(env, dup2(oldStdErr, com_oracle_truffle_llvm_pipe_CaptureNativeOutput_STDERR))) {
if (check_error(env, dup2(oldStdErr, com_oracle_truffle_llvm_tests_pipe_CaptureNativeOutput_STDERR))) {
return;
}
if (check_error(env, close(oldStdOut))) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.oracle.truffle.llvm.pipe;
package com.oracle.truffle.llvm.tests.pipe;

import java.io.File;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.oracle.truffle.llvm.pipe;
package com.oracle.truffle.llvm.tests.pipe;

import java.io.IOException;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.oracle.truffle.llvm.types.floating.test;
package com.oracle.truffle.llvm.tests.types.floating;

import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.oracle.truffle.llvm.types.floating.test;
package com.oracle.truffle.llvm.tests.types.floating;

import static org.junit.Assert.assertEquals;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.oracle.truffle.llvm.types.floating.test;
package com.oracle.truffle.llvm.tests.types.floating;

import static org.junit.Assert.assertEquals;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.oracle.truffle.llvm.types.floating.test;
package com.oracle.truffle.llvm.tests.types.floating;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.oracle.truffle.llvm.types.floating.test;
package com.oracle.truffle.llvm.tests.types.floating;

import static org.junit.Assert.assertEquals;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.oracle.truffle.llvm.types.floating.test;
package com.oracle.truffle.llvm.tests.types.floating;

import static org.junit.Assert.assertEquals;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.oracle.truffle.llvm.types.floating.test;
package com.oracle.truffle.llvm.tests.types.floating;

import static org.junit.Assert.assertEquals;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.oracle.truffle.llvm.types.floating.test;
package com.oracle.truffle.llvm.tests.types.floating;

import static org.junit.Assert.assertEquals;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.oracle.truffle.llvm.types.floating.test;
package com.oracle.truffle.llvm.tests.types.floating;

import static org.junit.Assert.assertEquals;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.oracle.truffle.llvm.types.floating.test;
package com.oracle.truffle.llvm.tests.types.floating;

import static org.junit.Assert.assertEquals;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.oracle.truffle.llvm.types.floating.test;
package com.oracle.truffle.llvm.tests.types.floating;

import static org.junit.Assert.assertEquals;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.oracle.truffle.llvm.types.floating.test;
package com.oracle.truffle.llvm.tests.types.floating;

import static org.junit.Assert.assertEquals;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.oracle.truffle.llvm.types.floating.test;
package com.oracle.truffle.llvm.tests.types.floating;

import static org.junit.Assert.assertEquals;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.oracle.truffle.llvm.types.floating.test;
package com.oracle.truffle.llvm.tests.types.floating;

import static org.junit.Assert.assertEquals;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.oracle.truffle.llvm.types.floating.test;
package com.oracle.truffle.llvm.tests.types.floating;

import static org.junit.Assert.assertEquals;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.oracle.truffle.llvm.types.floating.test;
package com.oracle.truffle.llvm.tests.types.floating;

import org.junit.Assert;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.oracle.truffle.llvm.types.floating.test;
package com.oracle.truffle.llvm.tests.types.floating;

public class LLVMIVarBitTest {

Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
com.oracle.truffle.llvm.test.options.SulongTestOptions
com.oracle.truffle.llvm.tests.options.SulongTestOptions
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.oracle.truffle.llvm.test;
package com.oracle.truffle.llvm.tests;

import java.io.IOException;
import java.nio.file.Files;
Expand All @@ -40,9 +40,9 @@
import org.junit.Assert;
import org.junit.Test;

import com.oracle.truffle.llvm.pipe.CaptureNativeOutput;
import com.oracle.truffle.llvm.test.util.ProcessUtil;
import com.oracle.truffle.llvm.test.util.ProcessUtil.ProcessResult;
import com.oracle.truffle.llvm.tests.pipe.CaptureNativeOutput;
import com.oracle.truffle.llvm.tests.util.ProcessUtil;
import com.oracle.truffle.llvm.tests.util.ProcessUtil.ProcessResult;

public abstract class BaseSingleTestHarness extends BaseTestHarness {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.oracle.truffle.llvm.test;
package com.oracle.truffle.llvm.tests;

import java.io.File;
import java.io.IOException;
Expand All @@ -50,11 +50,11 @@
import org.junit.BeforeClass;
import org.junit.Test;

import com.oracle.truffle.llvm.pipe.CaptureNativeOutput;
import com.oracle.truffle.llvm.pipe.CaptureOutput;
import com.oracle.truffle.llvm.test.options.TestOptions;
import com.oracle.truffle.llvm.test.util.ProcessUtil;
import com.oracle.truffle.llvm.test.util.ProcessUtil.ProcessResult;
import com.oracle.truffle.llvm.tests.pipe.CaptureNativeOutput;
import com.oracle.truffle.llvm.tests.pipe.CaptureOutput;
import com.oracle.truffle.llvm.tests.options.TestOptions;
import com.oracle.truffle.llvm.tests.util.ProcessUtil;
import com.oracle.truffle.llvm.tests.util.ProcessUtil.ProcessResult;
import org.junit.Assume;

public abstract class BaseSuiteHarness extends BaseTestHarness {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.oracle.truffle.llvm.test;
package com.oracle.truffle.llvm.tests;

import java.io.IOException;
import java.nio.file.Path;
Expand All @@ -37,9 +37,9 @@
import org.junit.Assert;
import org.junit.Test;

import com.oracle.truffle.llvm.pipe.CaptureNativeOutput;
import com.oracle.truffle.llvm.test.util.ProcessUtil;
import com.oracle.truffle.llvm.test.util.ProcessUtil.ProcessResult;
import com.oracle.truffle.llvm.tests.pipe.CaptureNativeOutput;
import com.oracle.truffle.llvm.tests.util.ProcessUtil;
import com.oracle.truffle.llvm.tests.util.ProcessUtil.ProcessResult;

public abstract class BaseSulongOnlyHarness {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.oracle.truffle.llvm.test;
package com.oracle.truffle.llvm.tests;

import java.io.IOException;
import java.net.URI;
Expand All @@ -47,7 +47,7 @@

import org.junit.Test;

import com.oracle.truffle.llvm.test.options.TestOptions;
import com.oracle.truffle.llvm.tests.options.TestOptions;

public abstract class BaseTestHarness {

Expand Down
Loading

0 comments on commit 61bf367

Please sign in to comment.