Skip to content
Snippets Groups Projects
Commit 1e6b9d08 authored by Florian Angerer's avatar Florian Angerer
Browse files

[GR-2798] Fix: Removed root source section filter expression to enable step debugging for promises.

parents e0eeff8e 765a5916
No related branches found
No related tags found
No related merge requests found
......@@ -77,7 +77,6 @@ public class RInstrumentation {
SourceSection fdns = fdn.getSourceSection();
builder.indexIn(fdns.getCharIndex(), fdns.getCharLength());
builder.sourceIs(fdns.getSource());
builder.rootSourceSectionEquals(fdns);
return builder;
}
......
......@@ -144653,6 +144653,24 @@ debug: print(x)
[1] 5
exiting from: f(5)
 
##com.oracle.truffle.r.test.library.utils.TestInteractiveDebug.testPromise#Ignored.ImplementationError#
#fun <- function(x) { cat({ cat(x); cat('<<<NEWLINE>>>') }) }; debug(fun); fun(3)<<<NEWLINE>>><<<NEWLINE>>><<<NEWLINE>>><<<NEWLINE>>><<<NEWLINE>>>
debugging in: fun(3)
debug at #1: {
cat({
cat(x)
cat("\n")
})
}
debug at #1: cat({
cat(x)
cat("\n")
})
debug at #1: cat(x)
3debug at #1: cat("\n")
exiting from: fun(3)
##com.oracle.truffle.r.test.library.utils.TestInteractiveDebug.testSimple#
#f <- function(x) {<<<NEWLINE>>> t <- x + 1<<<NEWLINE>>> print(t)<<<NEWLINE>>> t}<<<NEWLINE>>>debug(f)<<<NEWLINE>>>f(5)<<<NEWLINE>>>x<<<NEWLINE>>>n<<<NEWLINE>>>n<<<NEWLINE>>>t<<<NEWLINE>>>n<<<NEWLINE>>>n
debugging in: f(5)
......@@ -59,6 +59,12 @@ public class TestInteractiveDebug extends TestBase {
assertEval("bar <- function(x) { for(i in seq(x)) print(x) }; foo <- function(x) { cat('foo entry\\n'); bar(x); cat('foo exit\\n') }; debug(foo); foo(5)\n\n\ns\nn\n\n\nf\n\n");
}
@Test
public void testPromise() {
// TODO enable test as soon as Truffle support is available
assertEval(Ignored.ImplementationError, "fun <- function(x) { cat({ cat(x); cat('\n') }) }; debug(fun); fun(3)\n\n\n\n\n");
}
@Test
public void testNestedDebugging() {
assertEval(Output.IgnoreDebugPath,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment