changeset 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 7acbe6efed0d
children 565bf188d39b
files graal/com.oracle.truffle.ruby.runtime/src/com/oracle/truffle/ruby/runtime/configuration/ConfigurationBuilder.java graal/com.oracle.truffle.ruby.test/src/com/oracle/truffle/ruby/test/core/KernelTests.java
diffstat 2 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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;
--- 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();