comparison truffle/com.oracle.truffle.api.dsl.test/src/com/oracle/truffle/api/dsl/test/MethodGuardsWithArgumentsTest.java @ 22241:14e6dfb1ef05

Truffle/Testing: massive rework of tests to accommodate recent instrumentation change with respect to "applyInstrumentation" - Caused by lack of a "vm" known to the Accessor during most testing, making the Instrumenter unavailable, which is now required to create a CallTarget - Modified the Instrumenter/Accessor with a static field that can be reflectively "poked" with a vm value for testing - Create a pair of methods to globally enable/disable testing mode to modify that static field and restore it when tests complete.
author Michael Van De Vanter <michael.van.de.vanter@oracle.com>
date Tue, 22 Sep 2015 20:31:19 -0700
parents dc83cc1f94f2
children 0d36601f233e
comparison
equal deleted inserted replaced
22240:f78c72e2e0b6 22241:14e6dfb1ef05
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
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.dsl.test; 23 package com.oracle.truffle.api.dsl.test;
24
25 import static com.oracle.truffle.api.dsl.test.TestHelper.createRoot;
26 import static com.oracle.truffle.api.dsl.test.TestHelper.executeWith;
27
28 import org.junit.After;
29 import org.junit.Assert;
30 import org.junit.Before;
31 import org.junit.Test;
24 32
25 import com.oracle.truffle.api.dsl.NodeChild; 33 import com.oracle.truffle.api.dsl.NodeChild;
26 import com.oracle.truffle.api.dsl.NodeChildren; 34 import com.oracle.truffle.api.dsl.NodeChildren;
27 import com.oracle.truffle.api.dsl.Specialization; 35 import com.oracle.truffle.api.dsl.Specialization;
28 import com.oracle.truffle.api.dsl.test.MethodGuardsWithArgumentsTestFactory.MArguments0Factory; 36 import com.oracle.truffle.api.dsl.test.MethodGuardsWithArgumentsTestFactory.MArguments0Factory;
30 import com.oracle.truffle.api.dsl.test.MethodGuardsWithArgumentsTestFactory.MArgumentsDouble0Factory; 38 import com.oracle.truffle.api.dsl.test.MethodGuardsWithArgumentsTestFactory.MArgumentsDouble0Factory;
31 import com.oracle.truffle.api.dsl.test.MethodGuardsWithArgumentsTestFactory.MArgumentsDouble1Factory; 39 import com.oracle.truffle.api.dsl.test.MethodGuardsWithArgumentsTestFactory.MArgumentsDouble1Factory;
32 import com.oracle.truffle.api.dsl.test.MethodGuardsWithArgumentsTestFactory.MArgumentsDouble2Factory; 40 import com.oracle.truffle.api.dsl.test.MethodGuardsWithArgumentsTestFactory.MArgumentsDouble2Factory;
33 import com.oracle.truffle.api.dsl.test.MethodGuardsWithArgumentsTestFactory.MArgumentsDouble3Factory; 41 import com.oracle.truffle.api.dsl.test.MethodGuardsWithArgumentsTestFactory.MArgumentsDouble3Factory;
34 import com.oracle.truffle.api.dsl.test.MethodGuardsWithArgumentsTestFactory.MArgumentsSingle2Factory; 42 import com.oracle.truffle.api.dsl.test.MethodGuardsWithArgumentsTestFactory.MArgumentsSingle2Factory;
35 import static com.oracle.truffle.api.dsl.test.TestHelper.createRoot;
36 import static com.oracle.truffle.api.dsl.test.TestHelper.executeWith;
37 import com.oracle.truffle.api.dsl.test.TypeSystemTest.TestRootNode; 43 import com.oracle.truffle.api.dsl.test.TypeSystemTest.TestRootNode;
38 import com.oracle.truffle.api.dsl.test.TypeSystemTest.ValueNode; 44 import com.oracle.truffle.api.dsl.test.TypeSystemTest.ValueNode;
39 import org.junit.Assert; 45 import com.oracle.truffle.api.dsl.test.utilities.InstrumentationTestMode;
40 import org.junit.Test;
41 46
42 public class MethodGuardsWithArgumentsTest { 47 public class MethodGuardsWithArgumentsTest {
48
49 @Before
50 public void before() throws NoSuchFieldException, SecurityException, IllegalArgumentException, IllegalAccessException {
51 InstrumentationTestMode.set(true);
52 }
53
54 @After
55 public void after() throws NoSuchFieldException, SecurityException, IllegalArgumentException, IllegalAccessException {
56 InstrumentationTestMode.set(false);
57 }
43 58
44 @Test 59 @Test
45 public void testMArguments0() { 60 public void testMArguments0() {
46 TestRootNode<MArguments0> root = createRoot(MArguments0Factory.getInstance()); 61 TestRootNode<MArguments0> root = createRoot(MArguments0Factory.getInstance());
47 Assert.assertEquals(42, executeWith(root)); 62 Assert.assertEquals(42, executeWith(root));