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
78072c0c
Commit
78072c0c
authored
10 years ago
by
Mick Jordan
Browse files
Options
Downloads
Patches
Plain Diff
add junitgate command; use .so extension for urand always
parent
8a32f3f0
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.native/urand/Makefile
+3
-1
3 additions, 1 deletion
com.oracle.truffle.r.test.native/urand/Makefile
mx.fastr/mx_fastr.py
+4
-0
4 additions, 0 deletions
mx.fastr/mx_fastr.py
with
7 additions
and
1 deletion
com.oracle.truffle.r.test.native/urand/Makefile
+
3
−
1
View file @
78072c0c
...
...
@@ -34,7 +34,9 @@ include $(NATIVE_PROJECT)/platform.mk
OBJ
=
lib
SRC
=
src
C_SOURCES
:=
$(
wildcard
$(
SRC
)
/
*
.c
)
C_LIBNAME
:=
lib
$(
subst
$(
SRC
)
/,,
$(
C_SOURCES:.c
=
.
$(
SHARED_EXT
)))
# Since this library is loaded explicitly we keep a consistent
# extension so that the test script is portable for TestExpectedOutput
C_LIBNAME
:=
lib
$(
subst
$(
SRC
)
/,,
$(
C_SOURCES:.c
=
.so
))
C_OBJECTS
:=
$(
subst
$(
SRC
)
,
$(
OBJ
)
,
$(
C_SOURCES:.c
=
.o
))
C_LIB
:=
$(
OBJ
)
/
$(
C_LIBNAME
)
...
...
This diff is collapsed.
Click to expand it.
mx.fastr/mx_fastr.py
+
4
−
0
View file @
78072c0c
...
...
@@ -243,6 +243,9 @@ def junit_simple(args):
def
junit_default
(
args
):
return
junit
([
'
--tests
'
,
_all_unit_tests
()]
+
args
)
def
junit_gate
(
args
):
return
junit
([
'
--tests
'
,
_gate_unit_tests
()]
+
args
)
def
_simple_unit_tests
():
return
'
com.oracle.truffle.r.test.simple
'
...
...
@@ -363,6 +366,7 @@ def mx_init(suite):
'
junit
'
:
[
junit
,
[
'
options
'
]],
'
junitsimple
'
:
[
junit_simple
,
[
'
options
'
]],
'
junitdefault
'
:
[
junit_default
,
[
'
options
'
]],
'
junitgate
'
:
[
junit_gate
,
[
'
options
'
]],
'
unittest
'
:
[
unittest
,
[
'
options
'
]],
'
rbcheck
'
:
[
rbcheck
,
[
'
options
'
]],
'
rcmplib
'
:
[
rcmplib
,
[
'
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