Skip to content
Snippets Groups Projects
Commit 28f93980 authored by Tomas Stupka's avatar Tomas Stupka
Browse files

make FastRDebugTest part of rutsimple again

parent b7af39ae
No related branches found
No related tags found
No related merge requests found
......@@ -164,9 +164,6 @@ public class FastRDebugTest {
assertEquals("Factorial computed OK", 2, i);
}
/**
* Test is currently ignored because of missing functionality in Truffle.
*/
@Test
public void testConditionalBreakpoint() throws Throwable {
final Source source = sourceFromText("main <- function() { res <- 0;\n" +
......
......@@ -337,7 +337,9 @@ def _simple_generated_unit_tests():
return map(_test_subpackage, ['engine.shell', 'engine.interop', 'library.base', 'library.grid', 'library.fastrGrid', 'library.methods', 'library.stats', 'library.tools', 'library.utils', 'library.fastr', 'builtins', 'functions', 'parser', 'rffi', 'rng', 'runtime.data', 'S4'])
def _simple_unit_tests():
return _simple_generated_unit_tests() + ['com.oracle.truffle.r.nodes.castsTests', 'com.oracle.truffle.tck.tests']
# com.oracle.truffle.tck.tests - truffle language inter-operability tck in com.oracle.truffle.r.test.tck/
# com.oracle.truffle.r.test.tck - other tck tests in com.oracle.truffle.r.test/ e.g. FastRDebugTest
return _simple_generated_unit_tests() + ['com.oracle.truffle.r.nodes.castsTests', 'com.oracle.truffle.tck.tests', 'com.oracle.truffle.r.test.tck']
def _nodes_unit_tests():
return ['com.oracle.truffle.r.nodes.test', 'com.oracle.truffle.r.nodes.access.vector']
......
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