# HG changeset patch # User Chris Seaton # Date 1389552215 0 # Node ID dd0ba029bf34294446c80cd293d641273e393c52 # Parent 7acbe6efed0d0fc7a3aff034b0e42db2f3d98460 Ruby: disabled debugging and tracing while they?re broken. diff -r 7acbe6efed0d -r dd0ba029bf34 graal/com.oracle.truffle.ruby.runtime/src/com/oracle/truffle/ruby/runtime/configuration/ConfigurationBuilder.java --- a/graal/com.oracle.truffle.ruby.runtime/src/com/oracle/truffle/ruby/runtime/configuration/ConfigurationBuilder.java Sun Jan 12 15:01:24 2014 +0100 +++ b/graal/com.oracle.truffle.ruby.runtime/src/com/oracle/truffle/ruby/runtime/configuration/ConfigurationBuilder.java Sun Jan 12 18:43:35 2014 +0000 @@ -27,7 +27,7 @@ private RubyVersion rubyVersion = RubyVersion.RUBY_19; - private boolean debug = true; + private boolean debug = false; private boolean verbose = false; private int warningLevel = 0; private int taintCheckLevel = 0; @@ -35,7 +35,7 @@ private String defaultExternalEncoding = null; private String defaultInternalEncoding = null; - private boolean trace = true; + private boolean trace = false; private boolean fullObjectSpace = false; private boolean printParseTree = false; diff -r 7acbe6efed0d -r dd0ba029bf34 graal/com.oracle.truffle.ruby.test/src/com/oracle/truffle/ruby/test/core/KernelTests.java --- a/graal/com.oracle.truffle.ruby.test/src/com/oracle/truffle/ruby/test/core/KernelTests.java Sun Jan 12 15:01:24 2014 +0100 +++ b/graal/com.oracle.truffle.ruby.test/src/com/oracle/truffle/ruby/test/core/KernelTests.java Sun Jan 12 18:43:35 2014 +0000 @@ -71,6 +71,7 @@ assertPrints("16\n", "class Foo; def foo; @x = 14; @y = 2; binding; end; end; puts eval(\"@x + @y\", Foo.new.foo)"); } + @Ignore @Test public void testSetTraceFuncLine() { final ConfigurationBuilder configuration = new ConfigurationBuilder();