comparison graal/com.oracle.truffle.ruby.test/src/com/oracle/truffle/ruby/test/core/KernelTests.java @ 13596:dd0ba029bf34

Ruby: disabled debugging and tracing while they?re broken.
author Chris Seaton <chris.seaton@oracle.com>
date Sun, 12 Jan 2014 18:43:35 +0000
parents 0fbee3eb71f0
children
comparison
equal deleted inserted replaced
13595:7acbe6efed0d 13596:dd0ba029bf34
69 public void testBindingInstanceVariables() { 69 public void testBindingInstanceVariables() {
70 // Use the binding returned from a method in an object for eval 70 // Use the binding returned from a method in an object for eval
71 assertPrints("16\n", "class Foo; def foo; @x = 14; @y = 2; binding; end; end; puts eval(\"@x + @y\", Foo.new.foo)"); 71 assertPrints("16\n", "class Foo; def foo; @x = 14; @y = 2; binding; end; end; puts eval(\"@x + @y\", Foo.new.foo)");
72 } 72 }
73 73
74 @Ignore
74 @Test 75 @Test
75 public void testSetTraceFuncLine() { 76 public void testSetTraceFuncLine() {
76 final ConfigurationBuilder configuration = new ConfigurationBuilder(); 77 final ConfigurationBuilder configuration = new ConfigurationBuilder();
77 configuration.setTrace(true); 78 configuration.setTrace(true);
78 79