mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2026-01-26 09:51:36 +01:00
Examples projects, more complete documentation, and other beautification. It brings a tear to the eye.
git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@4 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
This commit is contained in:
60
examples/rakefile
Normal file
60
examples/rakefile
Normal file
@@ -0,0 +1,60 @@
|
||||
$here = File.expand_path( File.dirname( __FILE__ ) )
|
||||
|
||||
require 'rake/clean'
|
||||
require 'rake/loaders/makefile'
|
||||
require 'fileutils'
|
||||
require 'set'
|
||||
require '../auto/unity_test_summary'
|
||||
require '../auto/generate_test_runner'
|
||||
require 'rakefile_helper'
|
||||
|
||||
include RakefileHelpers
|
||||
|
||||
CLEAN.include('build/*')
|
||||
|
||||
desc "Build and run all tests, then output results (you can just type \"rake\" to get this."
|
||||
task :default => [:clobber, :all, :summary]
|
||||
|
||||
task :summary do
|
||||
flush_output
|
||||
summary = UnityTestSummary.new
|
||||
summary.set_root_path($here)
|
||||
summary.set_targets(Dir[BUILD_PATH+'/*.test*'])
|
||||
summary.run
|
||||
end
|
||||
|
||||
task :all do
|
||||
puts "Starting Test Suite"
|
||||
runner_generator = UnityTestRunnerGenerator.new
|
||||
test_sets = {}
|
||||
|
||||
#compile unity files
|
||||
Dir[UNITY_PATH+'/*.c'].each do |file|
|
||||
compile(file, BUILD_PATH+'/'+File.basename(file).gsub('.c', OBJ_EXTENSION))
|
||||
end
|
||||
|
||||
#compile source files
|
||||
Dir[SOURCE_PATH+'/*.c'].each do |file|
|
||||
compile(file, BUILD_PATH+'/'+File.basename(file).gsub('.c', OBJ_EXTENSION))
|
||||
end
|
||||
|
||||
#compile test files
|
||||
Dir[UNIT_TEST_PATH+'/*.c'].each do |file|
|
||||
compile(file, BUILD_PATH+'/'+File.basename(file).gsub('.c', OBJ_EXTENSION))
|
||||
end
|
||||
|
||||
#compile runner files
|
||||
Dir[UNIT_TEST_PATH+'/*.c'].each do |file|
|
||||
run_file = BUILD_PATH+'/'+File.basename(file).gsub('.c','_Runner.c')
|
||||
test_set = runner_generator.run(file, run_file)
|
||||
compile(run_file, run_file.gsub('.c', OBJ_EXTENSION))
|
||||
test_sets[run_file.gsub('_Runner.c', BIN_EXTENSION)] = test_set.map {|req_file| BUILD_PATH + '/' + File.basename(req_file).gsub(/\.[c|h]/, OBJ_EXTENSION)}
|
||||
end
|
||||
|
||||
#link and run each test
|
||||
test_sets.each_pair do |exe_file, obj_files|
|
||||
link(obj_files, exe_file)
|
||||
write_result_file(exe_file, run_test(exe_file))
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user