Further cleanup based on server results

This commit is contained in:
mvandervoord
2020-03-19 11:29:17 -04:00
parent 1bdb299566
commit 13ee7c9eec
8 changed files with 21 additions and 14 deletions
+2 -2
View File
@@ -27,7 +27,7 @@ module RakefileHelpers
def unit_test_files
path = $cfg['compiler']['unit_tests_path'] + 'Test*' + C_EXTENSION
path.gsub!(/\\/, '/')
path.tr!('\\', '/')
FileList.new(path)
end
@@ -162,7 +162,7 @@ module RakefileHelpers
summary = UnityTestSummary.new
summary.root = HERE
results_glob = "#{$cfg['compiler']['build_path']}*.test*"
results_glob.gsub!(/\\/, '/')
results_glob.tr!('\\', '/')
results = Dir[results_glob]
summary.targets = results
report summary.run