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
616206bd
Commit
616206bd
authored
8 years ago
by
Mick Jordan
Browse files
Options
Downloads
Patches
Plain Diff
mx.originalgate -> mx.gate; add rgate
parent
14a697ec
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
mx.fastr/mx_fastr.py
+11
-27
11 additions, 27 deletions
mx.fastr/mx_fastr.py
with
11 additions
and
27 deletions
mx.fastr/mx_fastr.py
+
11
−
27
View file @
616206bd
...
...
@@ -29,6 +29,8 @@ import mx_fastr_pkgs
import
mx_fastr_dists
from
mx_fastr_dists
import
FastRNativeProject
,
FastRTestNativeProject
,
FastRReleaseProject
#pylint: disable=unused-import
import
mx_copylib
import
mx_fastr_mkgramrd
import
os
'''
...
...
@@ -232,28 +234,18 @@ def rembed(args, nonZeroIsFatal=True, extraVmArgs=None):
run_r
(
args
,
'
rembed
'
)
def
_fastr_gate_runner
(
args
,
tasks
):
# Until fixed, we call Checkstyle here and limit to primary
with
mx_gate
.
Task
(
'
Checkstyle check
'
,
tasks
)
as
t
:
if
t
:
if
mx
.
checkstyle
([
'
--primary
'
])
!=
0
:
t
.
abort
(
'
Checkstyle warnings were found
'
)
'''
The specific additional gates tasks provided by FastR
:
1. Copyright check
2. Check that ExpectedTestOutput file is in sync with unit tests
3. Unit tests
'''
# FastR has custom copyright check
with
mx_gate
.
Task
(
'
Copyright check
'
,
tasks
)
as
t
:
if
t
:
if
mx
.
checkcopyrights
([
'
--primary
'
])
!=
0
:
t
.
abort
(
'
copyright errors
'
)
with
mx_gate
.
Task
(
'
LDD
'
,
tasks
)
as
t
:
if
t
:
libpath
=
join
(
_fastr_suite
.
dir
,
'
lib
'
)
if
platform
.
system
()
==
'
Darwin
'
:
rc
=
subprocess
.
call
([
'
otool
'
,
'
-L
'
,
join
(
libpath
,
'
libR.dylib
'
)])
else
:
rc
=
subprocess
.
call
([
'
ldd
'
,
join
(
libpath
,
'
libR.so
'
)])
if
rc
!=
0
:
t
.
abort
(
'
LDD failed
'
)
# check that the expected test output file is up to date
with
mx_gate
.
Task
(
'
UnitTests: ExpectedTestOutput file check
'
,
tasks
)
as
t
:
if
t
:
...
...
@@ -267,15 +259,10 @@ def _fastr_gate_runner(args, tasks):
mx_gate
.
add_gate_runner
(
_fastr_suite
,
_fastr_gate_runner
)
def
gate
(
args
):
'''
Run the R gate
'''
# exclude findbugs until compliant
def
rgate
(
args
):
'''
Run the R gate, with some standard tasks excluded as they currently fail
'''
mx_gate
.
gate
(
args
+
[
'
-x
'
,
'
-t
'
,
'
FindBugs,Checkheaders,Distribution Overlap Check,BuildJavaWithEcj
'
])
def
original_gate
(
args
):
'''
Run the R gate (without filtering gate tasks)
'''
mx_gate
.
gate
(
args
)
def
_test_srcdir
():
tp
=
'
com.oracle.truffle.r.test
'
return
join
(
mx
.
project
(
tp
).
dir
,
'
src
'
,
tp
.
replace
(
'
.
'
,
sep
))
...
...
@@ -524,16 +511,13 @@ def rcmplib(args):
def
mx_post_parse_cmd_line
(
opts
):
mx_fastr_dists
.
mx_post_parse_cmd_line
(
opts
)
import
mx_fastr_mkgramrd
_commands
=
{
'
r
'
:
[
rshell
,
'
[options]
'
],
'
R
'
:
[
rshell
,
'
[options]
'
],
'
rscript
'
:
[
rscript
,
'
[options]
'
],
'
Rscript
'
:
[
rscript
,
'
[options]
'
],
'
rtestgen
'
:
[
testgen
,
''
],
'
originalgate
'
:
[
original_gate
,
'
[options]
'
],
'
gate
'
:
[
gate
,
''
],
'
rgate
'
:
[
rgate
,
''
],
'
junit
'
:
[
junit
,
[
'
options
'
]],
'
junitsimple
'
:
[
junit_simple
,
[
'
options
'
]],
'
junitdefault
'
:
[
junit_default
,
[
'
options
'
]],
...
...
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