Skip to content
Snippets Groups Projects
Commit aac77ac3 authored by Mick Jordan's avatar Mick Jordan
Browse files

[GR-2311] Modifications for unit tests (SVM).

parents 7b8a00f3 911b6957
No related branches found
No related tags found
No related merge requests found
/*
* Copyright (c) 2017, 2017, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package com.oracle.truffle.r.engine.interop;
import com.oracle.truffle.api.interop.CanResolve;
import com.oracle.truffle.api.interop.MessageResolution;
import com.oracle.truffle.api.interop.TruffleObject;
import com.oracle.truffle.api.nodes.Node;
import com.oracle.truffle.r.engine.TruffleRLanguage;
import com.oracle.truffle.r.runtime.context.RContext;
@MessageResolution(receiverType = RContext.class, language = TruffleRLanguage.class)
public class RContextMR {
@CanResolve
public abstract static class RContext extends Node {
protected static boolean test(TruffleObject receiver) {
return receiver instanceof RContext;
}
}
}
......@@ -29,6 +29,7 @@ import com.oracle.truffle.api.interop.MessageResolution;
import com.oracle.truffle.r.engine.TruffleRLanguage;
import com.oracle.truffle.r.engine.interop.ffi.nfi.TruffleNFI_Base;
import com.oracle.truffle.r.engine.interop.ffi.nfi.TruffleNFI_PCRE;
import com.oracle.truffle.r.engine.interop.ffi.nfi.TruffleNFI_UpCallsRFFIImpl;
import com.oracle.truffle.r.runtime.RInternalError;
import com.oracle.truffle.r.runtime.conn.RConnection;
import com.oracle.truffle.r.runtime.context.RContext;
......@@ -102,6 +103,8 @@ public final class RForeignAccessFactoryImpl implements RForeignAccessFactory {
return CharSXPWrapperMRForeign.ACCESS;
} else if (obj instanceof RConnection) {
return RConnectionMRForeign.ACCESS;
} else if (obj instanceof RContext) {
return RContextMRForeign.ACCESS;
} else if (obj instanceof TruffleNFI_Base.TruffleNFI_UnameNode.UnameUpCallImpl) {
return UnameUpCallImplMRForeign.ACCESS;
} else if (obj instanceof TruffleNFI_Base.TruffleNFI_ReadlinkNode.SetResultImpl) {
......
/*
* Copyright (c) 2017, 2017, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package com.oracle.truffle.r.engine.shell;
/**
* Convenience class that allows the R/Rscript entry to be chosen by an initial argument.
*/
public class RMain {
public static void main(String[] args) {
boolean rscript = false;
if (args.length > 0) {
String arg = args[0];
switch (arg) {
case "R":
case "r":
break;
case "Rscript":
case "rscript":
rscript = true;
break;
default:
System.out.println(arg);
usage();
}
String[] xargs = shiftArgs(args);
if (rscript) {
RscriptCommand.main(xargs);
} else {
RCommand.main(xargs);
}
} else {
usage();
}
}
private static void usage() {
System.out.println("usage: [R|Rscript] ...");
System.exit(1);
}
private static String[] shiftArgs(String[] args) {
String[] nargs = new String[args.length - 1];
System.arraycopy(args, 1, nargs, 0, nargs.length);
return nargs;
}
}
......@@ -71,6 +71,7 @@ import com.oracle.truffle.r.runtime.data.RFunction;
import com.oracle.truffle.r.runtime.data.RList;
import com.oracle.truffle.r.runtime.data.RNull;
import com.oracle.truffle.r.runtime.data.RStringVector;
import com.oracle.truffle.r.runtime.data.RTruffleObject;
import com.oracle.truffle.r.runtime.env.REnvironment;
import com.oracle.truffle.r.runtime.ffi.DLL;
import com.oracle.truffle.r.runtime.ffi.RFFIFactory;
......@@ -97,7 +98,7 @@ import com.oracle.truffle.r.runtime.rng.RRNG;
* Contexts can be destroyed
*/
@SuppressWarnings("deprecation")
public final class RContext extends com.oracle.truffle.api.ExecutionContext {
public final class RContext extends com.oracle.truffle.api.ExecutionContext implements RTruffleObject {
public static final int CONSOLE_WIDTH = 80;
......
......@@ -29,31 +29,31 @@ import com.oracle.truffle.r.runtime.ffi.PCRERFFI;
public class Managed_PCRERFFI implements PCRERFFI {
@Override
public MaketablesNode createMaketablesNode() {
throw unsupported("PCRER");
throw unsupported("PCRE");
}
@Override
public CompileNode createCompileNode() {
throw unsupported("PCRER");
throw unsupported("PCRE");
}
@Override
public GetCaptureCountNode createGetCaptureCountNode() {
throw unsupported("PCRER");
throw unsupported("PCRE");
}
@Override
public GetCaptureNamesNode createGetCaptureNamesNode() {
throw unsupported("PCRER");
throw unsupported("PCRE");
}
@Override
public StudyNode createStudyNode() {
throw unsupported("PCRER");
throw unsupported("PCRE");
}
@Override
public ExecNode createExecNode() {
throw unsupported("PCRER");
throw unsupported("PCRE");
}
}
......@@ -106,9 +106,8 @@ public class FastRJUnitWrapper {
ArrayList<Class<?>> tests = new ArrayList<>(1000);
try (BufferedReader br = new BufferedReader(new FileReader(testsFile))) {
String className;
while ((className = br.readLine()) != null) {
tests.add(Class.forName(className));
while ((testClassName = br.readLine()) != null) {
tests.add(Class.forName(testClassName));
}
} catch (IOException ioe) {
ioe.printStackTrace();
......
#
# Copyright (c) 2016, 2016, Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
......@@ -76,7 +76,10 @@ def junit(args, harness, parser=None, jdk_default=None):
if not found:
mx.warn('no tests matched by substring "' + t + '"')
vmArgs += mx.get_runtime_jvm_args([pcp.name for pcp in mx.projects(opt_limit_to_suite=True) if pcp.isJavaProject() and pcp.javaCompliance <= jdk.javaCompliance], jdk=jdk)
dists = ['FASTR', 'FASTR_UNIT_TESTS']
if mx.suite('r-apptests', fatalIfMissing=False):
dists.append('com.oracle.truffle.r.test.apps')
vmArgs += mx.get_runtime_jvm_args(dists, jdk=jdk)
if len(classes) != 0:
if len(classes) == 1:
......
......@@ -319,7 +319,10 @@ suite = {
"FASTR_UNIT_TESTS" : {
"description" : "unit tests",
"dependencies" : ["com.oracle.truffle.r.test"],
"dependencies" : [
"com.oracle.truffle.r.test",
"com.oracle.truffle.r.nodes.test"
],
"exclude": ["mx:HAMCREST", "mx:JUNIT", "mx:JMH"],
"distDependencies" : [
"FASTR",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment