[修改] 增加freeRTOS
1. 版本FreeRTOSv202212.01,命名为kernel;
This commit is contained in:
18
kernel/FreeRTOS-Plus/Test/CMock/scripts/create_runner.rb
Normal file
18
kernel/FreeRTOS-Plus/Test/CMock/scripts/create_runner.rb
Normal file
@ -0,0 +1,18 @@
|
||||
if $0 == __FILE__
|
||||
|
||||
# make sure there is at least one parameter left (the input file)
|
||||
if ARGV.length < 2
|
||||
puts ["\nusage: ruby #{__FILE__} input_test_file (output)",
|
||||
'',
|
||||
' input_test_file - this is the C file you want to create a runner for',
|
||||
' output - this is the name of the runner file to generate',
|
||||
' defaults to (input_test_file)_Runner'].join("\n")
|
||||
exit 1
|
||||
end
|
||||
|
||||
require "#{ENV['UNITY_DIR']}/auto/generate_test_runner"
|
||||
|
||||
test = ARGV[0]
|
||||
runner = ARGV[1]
|
||||
UnityTestRunnerGenerator.new.run(test, runner)
|
||||
end
|
||||
Reference in New Issue
Block a user