1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-27 02:11:36 +01:00

Added directory task to create temp build/ folder, and added .gitignore to prevent this new folder form being tracked by git.

This commit is contained in:
Greg Williams
2012-02-13 08:44:04 -05:00
parent d0d5ec5d75
commit 17663feed2
3 changed files with 20 additions and 8 deletions

View File

@@ -6,9 +6,9 @@
require 'yaml'
require 'fileutils'
require HERE+'auto/unity_test_summary'
require HERE+'auto/generate_test_runner'
require HERE+'auto/colour_reporter'
require UNITY_ROOT + 'auto/unity_test_summary'
require UNITY_ROOT + 'auto/generate_test_runner'
require UNITY_ROOT + 'auto/colour_reporter'
module RakefileHelpers
@@ -163,7 +163,7 @@ module RakefileHelpers
def report_summary
summary = UnityTestSummary.new
summary.set_root_path(HERE)
summary.set_root_path(UNITY_ROOT )
results_glob = "#{$cfg['compiler']['build_path']}*.test*"
results_glob.gsub!(/\\/, '/')
results = Dir[results_glob]