comparison truffle/com.oracle.truffle.api.dsl.test/src/com/oracle/truffle/api/dsl/test/CodeFormatTest.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
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 24
25 import org.junit.After;
26 import org.junit.Assert;
27 import org.junit.Before;
28 import org.junit.Test;
29
25 import com.oracle.truffle.api.dsl.Specialization; 30 import com.oracle.truffle.api.dsl.Specialization;
26 import com.oracle.truffle.api.dsl.test.CodeFormatTestFactory.LineWrappingTestFactory; 31 import com.oracle.truffle.api.dsl.test.CodeFormatTestFactory.LineWrappingTestFactory;
27 import com.oracle.truffle.api.dsl.test.TypeSystemTest.ValueNode; 32 import com.oracle.truffle.api.dsl.test.TypeSystemTest.ValueNode;
28 import org.junit.Assert; 33 import com.oracle.truffle.api.dsl.test.utilities.InstrumentationTestMode;
29 import org.junit.Test;
30 34
31 /** 35 /**
32 * Tests the generated code compiles without warnings for unusual large guard names. 36 * Tests the generated code compiles without warnings for unusual large guard names.
33 */ 37 */
34 public class CodeFormatTest { 38 public class CodeFormatTest {
39
40 @Before
41 public void before() throws NoSuchFieldException, SecurityException, IllegalArgumentException, IllegalAccessException {
42 InstrumentationTestMode.set(true);
43 }
44
45 @After
46 public void after() throws NoSuchFieldException, SecurityException, IllegalArgumentException, IllegalAccessException {
47 InstrumentationTestMode.set(false);
48 }
35 49
36 @Test 50 @Test
37 public void test() { 51 public void test() {
38 Assert.assertEquals(42, TestHelper.createCallTarget(LineWrappingTestFactory.create()).call()); 52 Assert.assertEquals(42, TestHelper.createCallTarget(LineWrappingTestFactory.create()).call());
39 } 53 }