Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
351614bb
Unverified
Commit
351614bb
authored
Jun 22, 2018
by
Yukihiro "Matz" Matsumoto
Committed by
GitHub
Jun 22, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4059 from take-cheeze/parallel_tests
Run tests parallelly for each target.
parents
864a998c
eaf463ad
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
4 deletions
+14
-4
Rakefile
Rakefile
+14
-3
lib/mruby/build.rb
lib/mruby/build.rb
+0
-1
No files found.
Rakefile
View file @
351614bb
...
...
@@ -118,10 +118,21 @@ task :all => depfiles do
end
desc
"run all mruby tests"
task
:test
=>
[
"all"
]
do
MRuby
.
each_target
do
run_test
if
test_enabled?
MRuby
.
each_target
do
next
unless
test_enabled?
t
=
:"test_
#{
self
.
name
}
"
task
t
=>
[
"all"
]
do
run_test
end
task
:test
=>
t
next
unless
bintest_enabled?
t
=
:"bintest_
#{
self
.
name
}
"
task
t
=>
[
"all"
]
do
run_bintest
end
task
:test
=>
t
end
desc
"clean all built and in-repo installed artifacts"
...
...
lib/mruby/build.rb
View file @
351614bb
...
...
@@ -298,7 +298,6 @@ EOS
mrbtest
=
exefile
(
"
#{
build_dir
}
/bin/mrbtest"
)
sh
"
#{
filename
mrbtest
.
relative_path
}#{
$verbose
?
' -v'
:
''
}
"
puts
run_bintest
if
bintest_enabled?
end
def
run_bintest
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment