# HG changeset patch # User Jaroslav Tulach # Date 1437404276 -7200 # Node ID 12e527c175b298713f89ba2369cb61056ab76c08 # Parent 8296373cefe1f034b3aef0ac53bedfdd579464b2 Using the non-deprecated RootNode constructors with a MockLanguage in tests diff -r 8296373cefe1 -r 12e527c175b2 graal/com.oracle.graal.truffle.test/src/com/oracle/graal/truffle/test/BytecodeInterpreterPartialEvaluationTest.java --- a/graal/com.oracle.graal.truffle.test/src/com/oracle/graal/truffle/test/BytecodeInterpreterPartialEvaluationTest.java Mon Jul 20 14:13:43 2015 +0200 +++ b/graal/com.oracle.graal.truffle.test/src/com/oracle/graal/truffle/test/BytecodeInterpreterPartialEvaluationTest.java Mon Jul 20 16:57:56 2015 +0200 @@ -52,6 +52,7 @@ @CompilationFinal private final FrameSlot[] stack; public Program(String name, byte[] bytecodes, int maxLocals, int maxStack) { + super(MockLanguage.class, null, null); this.name = name; this.bytecodes = bytecodes; locals = new FrameSlot[maxLocals]; diff -r 8296373cefe1 -r 12e527c175b2 graal/com.oracle.graal.truffle.test/src/com/oracle/graal/truffle/test/MockLanguage.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/graal/com.oracle.graal.truffle.test/src/com/oracle/graal/truffle/test/MockLanguage.java Mon Jul 20 16:57:56 2015 +0200 @@ -0,0 +1,31 @@ +/* + * Copyright (c) 2015, 2015, 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.graal.truffle.test; + +import com.oracle.truffle.api.TruffleLanguage; + +public abstract class MockLanguage extends TruffleLanguage { + public MockLanguage(Env env) { + super(env); + } +} diff -r 8296373cefe1 -r 12e527c175b2 graal/com.oracle.graal.truffle.test/src/com/oracle/graal/truffle/test/nodes/RootTestNode.java --- a/graal/com.oracle.graal.truffle.test/src/com/oracle/graal/truffle/test/nodes/RootTestNode.java Mon Jul 20 14:13:43 2015 +0200 +++ b/graal/com.oracle.graal.truffle.test/src/com/oracle/graal/truffle/test/nodes/RootTestNode.java Mon Jul 20 16:57:56 2015 +0200 @@ -22,6 +22,7 @@ */ package com.oracle.graal.truffle.test.nodes; +import com.oracle.graal.truffle.test.MockLanguage; import com.oracle.truffle.api.frame.*; import com.oracle.truffle.api.instrument.*; import com.oracle.truffle.api.nodes.*; @@ -33,7 +34,7 @@ @Child AbstractTestNode node; public RootTestNode(FrameDescriptor descriptor, String name, AbstractTestNode node) { - super(null, descriptor); + super(MockLanguage.class, null, descriptor); this.name = name; this.node = node; }