Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
QueryR
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Julien Lopez
QueryR
Commits
3b572a0c
Commit
3b572a0c
authored
6 years ago
by
Tomas Stupka
Browse files
Options
Downloads
Plain Diff
[GR-10602] Make FastRDebugTest a part of a gate.
PullRequest: fastr/1614
parents
b42d40fa
28f93980
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
com.oracle.truffle.r.test/src/com/oracle/truffle/r/test/tck/FastRDebugTest.java
+0
-3
0 additions, 3 deletions
...est/src/com/oracle/truffle/r/test/tck/FastRDebugTest.java
mx.fastr/mx_fastr.py
+3
-1
3 additions, 1 deletion
mx.fastr/mx_fastr.py
with
3 additions
and
4 deletions
com.oracle.truffle.r.test/src/com/oracle/truffle/r/test/tck/FastRDebugTest.java
+
0
−
3
View file @
3b572a0c
...
...
@@ -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"
+
...
...
This diff is collapsed.
Click to expand it.
mx.fastr/mx_fastr.py
+
3
−
1
View file @
3b572a0c
...
...
@@ -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
'
]
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment