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
5dea19e9
Commit
5dea19e9
authored
Apr 08, 2013
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1150 from monaka/pr-add-test-runner-support
Add "test runner" support for cross builds.
parents
0d8aa67a
6e28c0eb
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
36 additions
and
2 deletions
+36
-2
build_config.rb
build_config.rb
+3
-0
tasks/mruby_build.rake
tasks/mruby_build.rake
+13
-2
tasks/mruby_build_commands.rake
tasks/mruby_build_commands.rake
+20
-0
No files found.
build_config.rb
View file @
5dea19e9
...
...
@@ -114,4 +114,7 @@ end
# conf.build_mrbtest_lib_only
#
# conf.gem 'examples/mrbgems/c_and_ruby_extension_example'
#
# conf.test_runner.command = 'env'
#
# end
tasks/mruby_build.rake
View file @
5dea19e9
...
...
@@ -194,10 +194,21 @@ module MRuby
end
# Build
class
CrossBuild
<
Build
attr_block
%w(test_runner)
def
initialize
(
name
,
&
block
)
@test_runner
=
Command
::
CrossTestRunner
.
new
(
self
)
super
end
def
run_test
mrbtest
=
exefile
(
"
#{
build_dir
}
/test/mrbtest"
)
puts
"You should run
#{
mrbtest
}
on target device."
puts
if
(
@test_runner
.
command
==
nil
)
puts
"You should run
#{
mrbtest
}
on target device."
puts
else
@test_runner
.
run
(
mrbtest
)
end
end
end
# CrossBuild
end
# MRuby
tasks/mruby_build_commands.rake
View file @
5dea19e9
...
...
@@ -259,4 +259,24 @@ module MRuby
end
end
end
class
Command::CrossTestRunner
<
Command
attr_accessor
:runner_options
attr_accessor
:verbose_flag
attr_accessor
:flags
def
initialize
(
build
)
super
@command
=
nil
@runner_options
=
'%{flags} %{infile}'
@verbose_flag
=
''
@flags
=
[]
end
def
run
(
testbinfile
)
puts
"TEST for "
+
@build
.
name
_run
runner_options
,
{
:flags
=>
[
flags
,
verbose_flag
].
flatten
.
join
(
' '
),
:infile
=>
testbinfile
}
end
end
end
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