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

[GR-10602] Make FastRDebugTest a part of a gate.

PullRequest: fastr/1614
parents b42d40fa 28f93980
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