ceedling 0.15.1 → 0.15.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (295) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +1 -1
  3. data/Gemfile.lock +9 -13
  4. data/README.md +21 -3
  5. data/{rakefile.rb → Rakefile} +0 -0
  6. data/lib/ceedling/version.rb +4 -4
  7. data/lib/ceedling/version.rb.erb +1 -1
  8. data/release/version.info +1 -1
  9. data/vendor/c_exception/Gemfile +1 -1
  10. data/vendor/c_exception/Gemfile.lock +12 -0
  11. data/vendor/c_exception/{docs/license.txt → LICENSE.txt} +9 -9
  12. data/vendor/c_exception/README.md +146 -0
  13. data/vendor/c_exception/{rakefile.rb → Rakefile} +6 -5
  14. data/vendor/c_exception/lib/CException.c +9 -6
  15. data/vendor/c_exception/release/build.info +1 -1
  16. data/vendor/c_exception/release/version.info +1 -1
  17. data/vendor/c_exception/test/CExceptionConfig.h +2 -0
  18. data/vendor/c_exception/test/TestException.c +4 -1
  19. data/vendor/cmock/README.md +24 -0
  20. data/vendor/cmock/{rakefile.rb → Rakefile} +12 -12
  21. data/vendor/cmock/docs/CMock Summary.odt +0 -0
  22. data/vendor/cmock/docs/CMock Summary.pdf +0 -0
  23. data/vendor/cmock/docs/CMock_Summary.md +130 -111
  24. data/vendor/cmock/docs/license.txt +1 -1
  25. data/vendor/cmock/lib/cmock.rb +36 -12
  26. data/vendor/cmock/lib/cmock_config.rb +39 -36
  27. data/vendor/cmock/lib/cmock_generator.rb +33 -25
  28. data/vendor/cmock/lib/cmock_generator_plugin_expect_any_args.rb +68 -0
  29. data/vendor/cmock/lib/cmock_generator_plugin_ignore.rb +18 -42
  30. data/vendor/cmock/lib/cmock_generator_plugin_return_thru_ptr.rb +2 -2
  31. data/vendor/cmock/lib/cmock_generator_utils.rb +39 -29
  32. data/vendor/cmock/lib/cmock_header_parser.rb +46 -39
  33. data/vendor/cmock/rakefile_helper.rb +38 -38
  34. data/vendor/cmock/src/cmock.c +20 -4
  35. data/vendor/cmock/src/cmock.h +6 -1
  36. data/vendor/cmock/src/cmock_internals.h +26 -3
  37. data/vendor/cmock/targets/clang_strict.yml +85 -0
  38. data/vendor/cmock/targets/gcc.yml +4 -2
  39. data/vendor/cmock/targets/gcc_64.yml +55 -0
  40. data/vendor/cmock/test/c/TestCMockC.c +3 -3
  41. data/vendor/cmock/test/c/TestCMockCDynamic.c +11 -11
  42. data/vendor/cmock/test/c/TestCMockCDynamic_Runner.c +4 -2
  43. data/vendor/cmock/test/c/TestCMockC_Runner.c +1 -1
  44. data/vendor/cmock/test/system/systest_generator.rb +38 -26
  45. data/vendor/cmock/test/system/test_compilation/const.h +8 -3
  46. data/vendor/cmock/test/system/test_interactions/all_plugins_but_other_limits.yml +92 -58
  47. data/vendor/cmock/test/system/test_interactions/all_plugins_coexist.yml +53 -48
  48. data/vendor/cmock/test/system/test_interactions/array_and_pointer_handling.yml +58 -56
  49. data/vendor/cmock/test/system/test_interactions/basic_expect_and_return.yml +19 -18
  50. data/vendor/cmock/test/system/test_interactions/expect_and_return_custom_types.yml +13 -13
  51. data/vendor/cmock/test/system/test_interactions/expect_and_return_treat_as.yml +20 -20
  52. data/vendor/cmock/test/system/test_interactions/expect_any_args.yml +238 -0
  53. data/vendor/cmock/test/system/test_interactions/fancy_pointer_handling.yml +36 -34
  54. data/vendor/cmock/test/system/test_interactions/ignore_and_return.yml +24 -15
  55. data/vendor/cmock/test/system/test_interactions/nonstandard_parsed_stuff_2.yml +11 -11
  56. data/vendor/cmock/test/system/test_interactions/return_thru_ptr_and_expect_any_args.yml +235 -0
  57. data/vendor/cmock/test/system/test_interactions/return_thru_ptr_ignore_arg.yml +22 -26
  58. data/vendor/cmock/test/system/test_interactions/stubs_with_callbacks.yml +31 -31
  59. data/vendor/cmock/test/unit/cmock_generator_main_test.rb +141 -109
  60. data/vendor/cmock/test/unit/cmock_generator_plugin_expect_any_args_test.rb +82 -0
  61. data/vendor/cmock/test/unit/cmock_generator_plugin_ignore_test.rb +17 -81
  62. data/vendor/cmock/test/unit/cmock_generator_plugin_return_thru_ptr_test.rb +10 -10
  63. data/vendor/cmock/test/unit/cmock_generator_utils_test.rb +47 -41
  64. data/vendor/cmock/test/unit/cmock_header_parser_test.rb +290 -227
  65. data/vendor/unity/{rakefile.rb → Rakefile} +13 -6
  66. data/vendor/unity/auto/colour_prompt.rb +33 -12
  67. data/vendor/unity/auto/generate_test_runner.rb +67 -63
  68. data/vendor/unity/auto/parseOutput.rb +189 -0
  69. data/vendor/{cmock/vendor/unity/examples → unity/examples/example_1}/makefile +41 -40
  70. data/vendor/unity/examples/example_1/readme.txt +5 -0
  71. data/vendor/{cmock/vendor/unity/examples → unity/examples/example_1}/src/ProductionCode.c +24 -24
  72. data/vendor/{c_exception/vendor/unity/examples → unity/examples/example_1}/src/ProductionCode.h +3 -3
  73. data/vendor/{cmock/vendor/unity/examples → unity/examples/example_1}/src/ProductionCode2.c +9 -9
  74. data/vendor/{c_exception/vendor/unity/examples → unity/examples/example_1}/src/ProductionCode2.h +2 -2
  75. data/vendor/{cmock/vendor/unity/examples → unity/examples/example_1}/test/TestProductionCode.c +62 -62
  76. data/vendor/unity/examples/{test → example_1/test}/TestProductionCode2.c +31 -31
  77. data/vendor/unity/examples/{test/no_ruby → example_1/test/test_runners}/TestProductionCode2_Runner.c +46 -46
  78. data/vendor/unity/examples/{test/no_ruby → example_1/test/test_runners}/TestProductionCode_Runner.c +50 -50
  79. data/vendor/unity/examples/example_2/makefile +45 -0
  80. data/vendor/unity/examples/example_2/readme.txt +5 -0
  81. data/vendor/unity/examples/{src → example_2/src}/ProductionCode.c +24 -24
  82. data/vendor/unity/examples/{src → example_2/src}/ProductionCode.h +3 -3
  83. data/vendor/unity/examples/{src → example_2/src}/ProductionCode2.c +9 -9
  84. data/vendor/unity/examples/{src → example_2/src}/ProductionCode2.h +2 -2
  85. data/vendor/unity/examples/{test → example_2/test}/TestProductionCode.c +64 -62
  86. data/vendor/{cmock/vendor/unity/examples → unity/examples/example_2}/test/TestProductionCode2.c +33 -31
  87. data/vendor/unity/examples/example_2/test/test_runners/TestProductionCode2_Runner.c +9 -0
  88. data/vendor/unity/examples/example_2/test/test_runners/TestProductionCode_Runner.c +11 -0
  89. data/vendor/unity/examples/example_2/test/test_runners/all_tests.c +12 -0
  90. data/vendor/unity/examples/{helper → example_3/helper}/UnityHelper.c +10 -10
  91. data/vendor/{cmock/vendor/unity/examples → unity/examples/example_3}/helper/UnityHelper.h +12 -12
  92. data/vendor/unity/examples/{makefile → example_3/makefile} +41 -40
  93. data/vendor/unity/examples/{rakefile.rb → example_3/rakefile.rb} +44 -43
  94. data/vendor/{cmock/vendor/unity/examples → unity/examples/example_3}/rakefile_helper.rb +256 -256
  95. data/vendor/{c_exception/vendor/unity/examples → unity/examples/example_3}/readme.txt +18 -17
  96. data/vendor/{c_exception/vendor/unity/examples → unity/examples/example_3}/src/ProductionCode.c +24 -24
  97. data/vendor/{cmock/vendor/unity/examples → unity/examples/example_3}/src/ProductionCode.h +3 -3
  98. data/vendor/{c_exception/vendor/unity/examples → unity/examples/example_3}/src/ProductionCode2.c +9 -9
  99. data/vendor/{cmock/vendor/unity/examples → unity/examples/example_3}/src/ProductionCode2.h +2 -2
  100. data/vendor/{c_exception/vendor/unity/targets/gcc_64.yml → unity/examples/example_3/target_gcc_32.yml} +46 -44
  101. data/vendor/{c_exception/vendor/unity/examples → unity/examples/example_3}/test/TestProductionCode.c +62 -62
  102. data/vendor/{c_exception/vendor/unity/examples → unity/examples/example_3}/test/TestProductionCode2.c +31 -31
  103. data/vendor/{c_exception/vendor/unity/examples → unity/examples/example_3}/test/no_ruby/TestProductionCode2_Runner.c +46 -46
  104. data/vendor/{cmock/vendor/unity/examples → unity/examples/example_3}/test/no_ruby/TestProductionCode_Runner.c +50 -50
  105. data/vendor/unity/extras/eclipse/error_parsers.txt +26 -0
  106. data/vendor/unity/extras/fixture/src/unity_fixture.c +4 -1
  107. data/vendor/unity/extras/fixture/src/unity_fixture.h +17 -16
  108. data/vendor/unity/extras/fixture/src/unity_fixture_internals.h +7 -7
  109. data/vendor/unity/extras/fixture/test/unity_fixture_Test.c +17 -0
  110. data/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +1 -0
  111. data/vendor/unity/makefile +6 -4
  112. data/vendor/unity/rakefile_helper.rb +36 -27
  113. data/vendor/unity/src/unity.c +180 -181
  114. data/vendor/unity/src/unity.h +64 -2
  115. data/vendor/unity/src/unity_internals.h +188 -102
  116. data/vendor/unity/targets/clang_strict.yml +83 -0
  117. data/vendor/unity/targets/gcc_32.yml +5 -0
  118. data/vendor/unity/targets/gcc_64.yml +5 -0
  119. data/vendor/{c_exception/vendor/unity/targets/gcc.yml → unity/targets/gcc_auto_limits.yml} +5 -2
  120. data/vendor/{cmock/vendor/unity/targets/gcc_64.yml → unity/targets/gcc_auto_sizeof.yml} +6 -3
  121. data/vendor/{cmock/vendor/unity/targets/gcc.yml → unity/targets/gcc_auto_stdint.yml} +4 -2
  122. data/vendor/unity/test/expectdata/testsample_cmd.c +57 -54
  123. data/vendor/unity/test/expectdata/testsample_def.c +53 -50
  124. data/vendor/unity/test/expectdata/testsample_mock_cmd.c +79 -76
  125. data/vendor/unity/test/expectdata/testsample_mock_def.c +75 -72
  126. data/vendor/unity/test/expectdata/testsample_mock_new1.c +88 -85
  127. data/vendor/unity/test/expectdata/testsample_mock_new2.c +88 -85
  128. data/vendor/unity/test/expectdata/testsample_mock_param.c +76 -73
  129. data/vendor/unity/test/expectdata/testsample_mock_run1.c +88 -85
  130. data/vendor/unity/test/expectdata/testsample_mock_run2.c +88 -85
  131. data/vendor/unity/test/expectdata/testsample_mock_yaml.c +89 -86
  132. data/vendor/unity/test/expectdata/testsample_new1.c +63 -60
  133. data/vendor/unity/test/expectdata/testsample_new2.c +66 -63
  134. data/vendor/unity/test/expectdata/testsample_param.c +54 -51
  135. data/vendor/unity/test/expectdata/testsample_run1.c +63 -60
  136. data/vendor/unity/test/expectdata/testsample_run2.c +66 -63
  137. data/vendor/unity/test/expectdata/testsample_yaml.c +67 -64
  138. data/vendor/unity/test/test_generate_test_runner.rb +66 -72
  139. data/vendor/unity/test/testunity.c +591 -111
  140. metadata +58 -195
  141. data/vendor/c_exception/vendor/unity/auto/colour_prompt.rb +0 -94
  142. data/vendor/c_exception/vendor/unity/auto/colour_reporter.rb +0 -39
  143. data/vendor/c_exception/vendor/unity/auto/generate_config.yml +0 -36
  144. data/vendor/c_exception/vendor/unity/auto/generate_module.rb +0 -202
  145. data/vendor/c_exception/vendor/unity/auto/generate_test_runner.rb +0 -313
  146. data/vendor/c_exception/vendor/unity/auto/test_file_filter.rb +0 -23
  147. data/vendor/c_exception/vendor/unity/auto/unity_test_summary.rb +0 -139
  148. data/vendor/c_exception/vendor/unity/docs/Unity Summary.odt +0 -0
  149. data/vendor/c_exception/vendor/unity/docs/Unity Summary.pdf +0 -0
  150. data/vendor/c_exception/vendor/unity/docs/Unity Summary.txt +0 -217
  151. data/vendor/c_exception/vendor/unity/docs/license.txt +0 -31
  152. data/vendor/c_exception/vendor/unity/examples/helper/UnityHelper.c +0 -10
  153. data/vendor/c_exception/vendor/unity/examples/helper/UnityHelper.h +0 -12
  154. data/vendor/c_exception/vendor/unity/examples/makefile +0 -40
  155. data/vendor/c_exception/vendor/unity/examples/rakefile.rb +0 -32
  156. data/vendor/c_exception/vendor/unity/examples/rakefile_helper.rb +0 -256
  157. data/vendor/c_exception/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +0 -50
  158. data/vendor/c_exception/vendor/unity/extras/fixture/build/MakefileWorker.mk +0 -331
  159. data/vendor/c_exception/vendor/unity/extras/fixture/build/filterGcov.sh +0 -61
  160. data/vendor/c_exception/vendor/unity/extras/fixture/rakefile.rb +0 -37
  161. data/vendor/c_exception/vendor/unity/extras/fixture/rakefile_helper.rb +0 -178
  162. data/vendor/c_exception/vendor/unity/extras/fixture/readme.txt +0 -9
  163. data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.c +0 -381
  164. data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.h +0 -81
  165. data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_internals.h +0 -44
  166. data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +0 -16
  167. data/vendor/c_exception/vendor/unity/extras/fixture/test/main/AllTests.c +0 -21
  168. data/vendor/c_exception/vendor/unity/extras/fixture/test/testunity_fixture.c +0 -39
  169. data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_Test.c +0 -321
  170. data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +0 -40
  171. data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.c +0 -56
  172. data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.h +0 -17
  173. data/vendor/c_exception/vendor/unity/makefile +0 -35
  174. data/vendor/c_exception/vendor/unity/rakefile.rb +0 -59
  175. data/vendor/c_exception/vendor/unity/rakefile_helper.rb +0 -240
  176. data/vendor/c_exception/vendor/unity/release/build.info +0 -2
  177. data/vendor/c_exception/vendor/unity/release/version.info +0 -2
  178. data/vendor/c_exception/vendor/unity/src/unity.c +0 -979
  179. data/vendor/c_exception/vendor/unity/src/unity.h +0 -232
  180. data/vendor/c_exception/vendor/unity/src/unity_internals.h +0 -424
  181. data/vendor/c_exception/vendor/unity/targets/hitech_picc18.yml +0 -101
  182. data/vendor/c_exception/vendor/unity/targets/iar_arm_v4.yml +0 -89
  183. data/vendor/c_exception/vendor/unity/targets/iar_arm_v5.yml +0 -79
  184. data/vendor/c_exception/vendor/unity/targets/iar_arm_v5_3.yml +0 -79
  185. data/vendor/c_exception/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +0 -93
  186. data/vendor/c_exception/vendor/unity/targets/iar_cortexm3_v5.yml +0 -83
  187. data/vendor/c_exception/vendor/unity/targets/iar_msp430.yml +0 -94
  188. data/vendor/c_exception/vendor/unity/targets/iar_sh2a_v6.yml +0 -85
  189. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_cmd.c +0 -54
  190. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_def.c +0 -50
  191. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_cmd.c +0 -76
  192. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_def.c +0 -72
  193. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new1.c +0 -85
  194. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new2.c +0 -85
  195. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_param.c +0 -73
  196. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run1.c +0 -85
  197. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run2.c +0 -85
  198. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_yaml.c +0 -86
  199. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_new1.c +0 -60
  200. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_new2.c +0 -63
  201. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_param.c +0 -51
  202. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_run1.c +0 -60
  203. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_run2.c +0 -63
  204. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_yaml.c +0 -64
  205. data/vendor/c_exception/vendor/unity/test/test_generate_test_runner.rb +0 -94
  206. data/vendor/c_exception/vendor/unity/test/testdata/mocksample.c +0 -51
  207. data/vendor/c_exception/vendor/unity/test/testdata/sample.yml +0 -9
  208. data/vendor/c_exception/vendor/unity/test/testdata/testsample.c +0 -51
  209. data/vendor/c_exception/vendor/unity/test/testparameterized.c +0 -101
  210. data/vendor/c_exception/vendor/unity/test/testunity.c +0 -2024
  211. data/vendor/cmock/vendor/c_exception/docs/CExceptionSummary.odt +0 -0
  212. data/vendor/cmock/vendor/c_exception/docs/CExceptionSummary.pdf +0 -0
  213. data/vendor/cmock/vendor/c_exception/docs/license.txt +0 -30
  214. data/vendor/cmock/vendor/c_exception/docs/readme.txt +0 -236
  215. data/vendor/cmock/vendor/c_exception/lib/CException.c +0 -39
  216. data/vendor/cmock/vendor/c_exception/lib/CException.h +0 -70
  217. data/vendor/cmock/vendor/c_exception/makefile +0 -24
  218. data/vendor/cmock/vendor/c_exception/rakefile.rb +0 -41
  219. data/vendor/cmock/vendor/c_exception/release/build.info +0 -2
  220. data/vendor/cmock/vendor/c_exception/release/version.info +0 -2
  221. data/vendor/cmock/vendor/c_exception/test/CExceptionConfig.h +0 -27
  222. data/vendor/cmock/vendor/c_exception/test/TestException.c +0 -291
  223. data/vendor/cmock/vendor/c_exception/test/TestException_Runner.c +0 -62
  224. data/vendor/cmock/vendor/unity/auto/colour_prompt.rb +0 -94
  225. data/vendor/cmock/vendor/unity/auto/colour_reporter.rb +0 -39
  226. data/vendor/cmock/vendor/unity/auto/generate_config.yml +0 -36
  227. data/vendor/cmock/vendor/unity/auto/generate_module.rb +0 -202
  228. data/vendor/cmock/vendor/unity/auto/generate_test_runner.rb +0 -313
  229. data/vendor/cmock/vendor/unity/auto/test_file_filter.rb +0 -23
  230. data/vendor/cmock/vendor/unity/auto/unity_test_summary.rb +0 -139
  231. data/vendor/cmock/vendor/unity/docs/Unity Summary.odt +0 -0
  232. data/vendor/cmock/vendor/unity/docs/Unity Summary.pdf +0 -0
  233. data/vendor/cmock/vendor/unity/docs/Unity Summary.txt +0 -217
  234. data/vendor/cmock/vendor/unity/docs/license.txt +0 -31
  235. data/vendor/cmock/vendor/unity/examples/helper/UnityHelper.c +0 -10
  236. data/vendor/cmock/vendor/unity/examples/rakefile.rb +0 -32
  237. data/vendor/cmock/vendor/unity/examples/readme.txt +0 -18
  238. data/vendor/cmock/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +0 -46
  239. data/vendor/cmock/vendor/unity/extras/fixture/build/MakefileWorker.mk +0 -331
  240. data/vendor/cmock/vendor/unity/extras/fixture/build/filterGcov.sh +0 -61
  241. data/vendor/cmock/vendor/unity/extras/fixture/rakefile.rb +0 -37
  242. data/vendor/cmock/vendor/unity/extras/fixture/rakefile_helper.rb +0 -178
  243. data/vendor/cmock/vendor/unity/extras/fixture/readme.txt +0 -9
  244. data/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture.c +0 -381
  245. data/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture.h +0 -81
  246. data/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture_internals.h +0 -44
  247. data/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +0 -16
  248. data/vendor/cmock/vendor/unity/extras/fixture/test/main/AllTests.c +0 -21
  249. data/vendor/cmock/vendor/unity/extras/fixture/test/testunity_fixture.c +0 -39
  250. data/vendor/cmock/vendor/unity/extras/fixture/test/unity_fixture_Test.c +0 -321
  251. data/vendor/cmock/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +0 -40
  252. data/vendor/cmock/vendor/unity/extras/fixture/test/unity_output_Spy.c +0 -56
  253. data/vendor/cmock/vendor/unity/extras/fixture/test/unity_output_Spy.h +0 -17
  254. data/vendor/cmock/vendor/unity/makefile +0 -35
  255. data/vendor/cmock/vendor/unity/rakefile.rb +0 -48
  256. data/vendor/cmock/vendor/unity/rakefile_helper.rb +0 -240
  257. data/vendor/cmock/vendor/unity/release/build.info +0 -2
  258. data/vendor/cmock/vendor/unity/release/version.info +0 -2
  259. data/vendor/cmock/vendor/unity/src/unity.c +0 -979
  260. data/vendor/cmock/vendor/unity/src/unity.h +0 -232
  261. data/vendor/cmock/vendor/unity/src/unity_internals.h +0 -424
  262. data/vendor/cmock/vendor/unity/targets/hitech_picc18.yml +0 -101
  263. data/vendor/cmock/vendor/unity/targets/iar_arm_v4.yml +0 -89
  264. data/vendor/cmock/vendor/unity/targets/iar_arm_v5.yml +0 -79
  265. data/vendor/cmock/vendor/unity/targets/iar_arm_v5_3.yml +0 -79
  266. data/vendor/cmock/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +0 -93
  267. data/vendor/cmock/vendor/unity/targets/iar_cortexm3_v5.yml +0 -83
  268. data/vendor/cmock/vendor/unity/targets/iar_msp430.yml +0 -94
  269. data/vendor/cmock/vendor/unity/targets/iar_sh2a_v6.yml +0 -85
  270. data/vendor/cmock/vendor/unity/test/expectdata/testsample_cmd.c +0 -54
  271. data/vendor/cmock/vendor/unity/test/expectdata/testsample_def.c +0 -50
  272. data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_cmd.c +0 -76
  273. data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_def.c +0 -72
  274. data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_new1.c +0 -85
  275. data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_new2.c +0 -85
  276. data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_param.c +0 -73
  277. data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_run1.c +0 -85
  278. data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_run2.c +0 -85
  279. data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_yaml.c +0 -86
  280. data/vendor/cmock/vendor/unity/test/expectdata/testsample_new1.c +0 -60
  281. data/vendor/cmock/vendor/unity/test/expectdata/testsample_new2.c +0 -63
  282. data/vendor/cmock/vendor/unity/test/expectdata/testsample_param.c +0 -51
  283. data/vendor/cmock/vendor/unity/test/expectdata/testsample_run1.c +0 -60
  284. data/vendor/cmock/vendor/unity/test/expectdata/testsample_run2.c +0 -63
  285. data/vendor/cmock/vendor/unity/test/expectdata/testsample_yaml.c +0 -64
  286. data/vendor/cmock/vendor/unity/test/test_generate_test_runner.rb +0 -94
  287. data/vendor/cmock/vendor/unity/test/testdata/mocksample.c +0 -51
  288. data/vendor/cmock/vendor/unity/test/testdata/sample.yml +0 -9
  289. data/vendor/cmock/vendor/unity/test/testdata/testsample.c +0 -51
  290. data/vendor/cmock/vendor/unity/test/testparameterized.c +0 -101
  291. data/vendor/cmock/vendor/unity/test/testunity.c +0 -2024
  292. data/vendor/unity/Gemfile +0 -4
  293. data/vendor/unity/examples/helper/UnityHelper.h +0 -12
  294. data/vendor/unity/examples/rakefile_helper.rb +0 -256
  295. data/vendor/unity/examples/readme.txt +0 -18
@@ -1,61 +0,0 @@
1
- #!/bin/bash
2
- INPUT_FILE=$1
3
- TEMP_FILE1=${INPUT_FILE}1.tmp
4
- TEMP_FILE2=${INPUT_FILE}2.tmp
5
- TEMP_FILE3=${INPUT_FILE}3.tmp
6
- ERROR_FILE=$2
7
- OUTPUT_FILE=$3
8
- HTML_OUTPUT_FILE=$3.html
9
- TEST_RESULTS=$4
10
-
11
- flattenGcovOutput() {
12
- while read line1
13
- do
14
- read line2
15
- echo $line2 " " $line1
16
- read junk
17
- read junk
18
- done < ${INPUT_FILE}
19
- }
20
-
21
- getRidOfCruft() {
22
- sed '-e s/^Lines.*://g' \
23
- '-e s/^[0-9]\./ &/g' \
24
- '-e s/^[0-9][0-9]\./ &/g' \
25
- '-e s/of.*File/ /g' \
26
- "-e s/'//g" \
27
- '-e s/^.*\/usr\/.*$//g' \
28
- '-e s/^.*\.$//g'
29
- }
30
-
31
- getFileNameRootFromErrorFile() {
32
- sed '-e s/gc..:cannot open .* file//g' ${ERROR_FILE}
33
- }
34
-
35
- writeEachNoTestCoverageFile() {
36
- while read line
37
- do
38
- echo " 0.00% " ${line}
39
- done
40
- }
41
-
42
- createHtmlOutput() {
43
- echo "<table border="2" cellspacing="5" cellpadding="5">"
44
- echo "<tr><th>Coverage</th><th>File</th></tr>"
45
- sed "-e s/.*% /<tr><td>&<\/td><td>/" \
46
- "-e s/[a-zA-Z0-9_]*\.[ch][a-z]*/<a href='file:\.\/&.gcov'>&<\/a><\/td><\/tr>/"
47
- echo "</table>"
48
- sed "-e s/.*/&<br>/g" < ${TEST_RESULTS}
49
- }
50
-
51
-
52
- flattenGcovOutput | getRidOfCruft > ${TEMP_FILE1}
53
- getFileNameRootFromErrorFile | writeEachNoTestCoverageFile > ${TEMP_FILE2}
54
- cat ${TEMP_FILE1} ${TEMP_FILE2} | sort | uniq > ${OUTPUT_FILE}
55
- createHtmlOutput < ${OUTPUT_FILE} > ${HTML_OUTPUT_FILE}
56
- rm -f ${TEMP_FILE1} ${TEMP_FILE2}
57
- erage</th><th>File</th></tr>"
58
- sed "-e s/.*% /<tr><td>&<\/td><td>/" \
59
- "-e s/[a-zA-Z0-9_]*\.[ch][a-z]*/<a href='file:\.\/&.gcov'>&<\/a><\/td><\/tr>/"
60
- echo "</table>"
61
- sed "-e s/.*/&<br>/g" < ${TEST_RESULTS
@@ -1,37 +0,0 @@
1
- # ==========================================
2
- # Unity Project - A Test Framework for C
3
- # Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
4
- # [Released under MIT License. Please refer to license.txt for details]
5
- # ==========================================
6
-
7
- HERE = File.expand_path(File.dirname(__FILE__)) + '/'
8
-
9
- require 'rake'
10
- require 'rake/clean'
11
- require 'rake/testtask'
12
- require HERE + 'rakefile_helper'
13
-
14
- include RakefileHelpers
15
-
16
- # Load default configuration, for now
17
- DEFAULT_CONFIG_FILE = 'gcc.yml'
18
- configure_toolchain(DEFAULT_CONFIG_FILE)
19
-
20
- task :unit do
21
- run_tests
22
- end
23
-
24
- desc "Build and test Unity Framework"
25
- task :all => [:clean, :unit]
26
- task :default => [:clobber, :all]
27
- task :ci => [:no_color, :default]
28
- task :cruise => [:no_color, :default]
29
-
30
- desc "Load configuration"
31
- task :config, :config_file do |t, args|
32
- configure_toolchain(args[:config_file])
33
- end
34
-
35
- task :no_color do
36
- $colour_output = false
37
- end
@@ -1,178 +0,0 @@
1
- # ==========================================
2
- # Unity Project - A Test Framework for C
3
- # Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
4
- # [Released under MIT License. Please refer to license.txt for details]
5
- # ==========================================
6
-
7
- require 'yaml'
8
- require 'fileutils'
9
- require HERE+'../../auto/unity_test_summary'
10
- require HERE+'../../auto/generate_test_runner'
11
- require HERE+'../../auto/colour_reporter'
12
-
13
- module RakefileHelpers
14
-
15
- C_EXTENSION = '.c'
16
-
17
- def load_configuration(config_file)
18
- unless ($configured)
19
- $cfg_file = HERE+"../../targets/#{config_file}" unless (config_file =~ /[\\|\/]/)
20
- $cfg = YAML.load(File.read($cfg_file))
21
- $colour_output = false unless $cfg['colour']
22
- $configured = true if (config_file != DEFAULT_CONFIG_FILE)
23
- end
24
- end
25
-
26
- def configure_clean
27
- CLEAN.include($cfg['compiler']['build_path'] + '*.*') unless $cfg['compiler']['build_path'].nil?
28
- end
29
-
30
- def configure_toolchain(config_file=DEFAULT_CONFIG_FILE)
31
- config_file += '.yml' unless config_file =~ /\.yml$/
32
- config_file = config_file unless config_file =~ /[\\|\/]/
33
- load_configuration(config_file)
34
- configure_clean
35
- end
36
-
37
- def tackit(strings)
38
- if strings.is_a?(Array)
39
- result = "\"#{strings.join}\""
40
- else
41
- result = strings
42
- end
43
- return result
44
- end
45
-
46
- def squash(prefix, items)
47
- result = ''
48
- items.each { |item| result += " #{prefix}#{tackit(item)}" }
49
- return result
50
- end
51
-
52
- def build_compiler_fields
53
- command = tackit($cfg['compiler']['path'])
54
- if $cfg['compiler']['defines']['items'].nil?
55
- defines = ''
56
- else
57
- defines = squash($cfg['compiler']['defines']['prefix'], $cfg['compiler']['defines']['items'] + ['UNITY_OUTPUT_CHAR=UnityOutputCharSpy_OutputChar'])
58
- end
59
- options = squash('', $cfg['compiler']['options'])
60
- includes = squash($cfg['compiler']['includes']['prefix'], $cfg['compiler']['includes']['items'])
61
- includes = includes.gsub(/\\ /, ' ').gsub(/\\\"/, '"').gsub(/\\$/, '') # Remove trailing slashes (for IAR)
62
- return {:command => command, :defines => defines, :options => options, :includes => includes}
63
- end
64
-
65
- def compile(file, defines=[])
66
- compiler = build_compiler_fields
67
- unity_include = $cfg['compiler']['includes']['prefix']+'../../src'
68
- cmd_str = "#{compiler[:command]}#{compiler[:defines]}#{compiler[:options]}#{compiler[:includes]} #{unity_include} #{file} " +
69
- "#{$cfg['compiler']['object_files']['prefix']}#{$cfg['compiler']['object_files']['destination']}" +
70
- "#{File.basename(file, C_EXTENSION)}#{$cfg['compiler']['object_files']['extension']}"
71
- execute(cmd_str)
72
- end
73
-
74
- def build_linker_fields
75
- command = tackit($cfg['linker']['path'])
76
- if $cfg['linker']['options'].nil?
77
- options = ''
78
- else
79
- options = squash('', $cfg['linker']['options'])
80
- end
81
- if ($cfg['linker']['includes'].nil? || $cfg['linker']['includes']['items'].nil?)
82
- includes = ''
83
- else
84
- includes = squash($cfg['linker']['includes']['prefix'], $cfg['linker']['includes']['items'])
85
- end
86
- includes = includes.gsub(/\\ /, ' ').gsub(/\\\"/, '"').gsub(/\\$/, '') # Remove trailing slashes (for IAR)
87
- return {:command => command, :options => options, :includes => includes}
88
- end
89
-
90
- def link(exe_name, obj_list)
91
- linker = build_linker_fields
92
- cmd_str = "#{linker[:command]}#{linker[:options]}#{linker[:includes]} " +
93
- (obj_list.map{|obj|"#{$cfg['linker']['object_files']['path']}#{obj} "}).join +
94
- $cfg['linker']['bin_files']['prefix'] + ' ' +
95
- $cfg['linker']['bin_files']['destination'] +
96
- exe_name + $cfg['linker']['bin_files']['extension']
97
- execute(cmd_str)
98
- end
99
-
100
- def build_simulator_fields
101
- return nil if $cfg['simulator'].nil?
102
- if $cfg['simulator']['path'].nil?
103
- command = ''
104
- else
105
- command = (tackit($cfg['simulator']['path']) + ' ')
106
- end
107
- if $cfg['simulator']['pre_support'].nil?
108
- pre_support = ''
109
- else
110
- pre_support = squash('', $cfg['simulator']['pre_support'])
111
- end
112
- if $cfg['simulator']['post_support'].nil?
113
- post_support = ''
114
- else
115
- post_support = squash('', $cfg['simulator']['post_support'])
116
- end
117
- return {:command => command, :pre_support => pre_support, :post_support => post_support}
118
- end
119
-
120
- def execute(command_string, verbose=true)
121
- report command_string
122
- output = `#{command_string}`.chomp
123
- report(output) if (verbose && !output.nil? && (output.length > 0))
124
- if ($?.exitstatus != 0)
125
- raise "Command failed. (Returned #{$?.exitstatus})"
126
- end
127
- return output
128
- end
129
-
130
- def report_summary
131
- summary = UnityTestSummary.new
132
- summary.set_root_path(HERE)
133
- results_glob = "#{$cfg['compiler']['build_path']}*.test*"
134
- results_glob.gsub!(/\\/, '/')
135
- results = Dir[results_glob]
136
- summary.set_targets(results)
137
- summary.run
138
- end
139
-
140
- def run_tests
141
- report 'Running Unity system tests...'
142
-
143
- # Tack on TEST define for compiling unit tests
144
- load_configuration($cfg_file)
145
- test_defines = ['TEST']
146
- $cfg['compiler']['defines']['items'] = [] if $cfg['compiler']['defines']['items'].nil?
147
-
148
- # Get a list of all source files needed
149
- src_files = Dir[HERE+'src/*.c']
150
- src_files += Dir[HERE+'test/*.c']
151
- src_files << '../../src/Unity.c'
152
-
153
- # Build object files
154
- src_files.each { |f| compile(f, test_defines) }
155
- obj_list = src_files.map {|f| File.basename(f.ext($cfg['compiler']['object_files']['extension'])) }
156
-
157
- # Link the test executable
158
- test_base = "framework_test"
159
- link(test_base, obj_list)
160
-
161
- # Execute unit test and generate results file
162
- simulator = build_simulator_fields
163
- executable = $cfg['linker']['bin_files']['destination'] + test_base + $cfg['linker']['bin_files']['extension']
164
- if simulator.nil?
165
- cmd_str = executable + " -v -r"
166
- else
167
- cmd_str = "#{simulator[:command]} #{simulator[:pre_support]} #{executable} #{simulator[:post_support]}"
168
- end
169
- output = execute(cmd_str)
170
- test_results = $cfg['compiler']['build_path'] + test_base
171
- if output.match(/OK$/m).nil?
172
- test_results += '.testfail'
173
- else
174
- test_results += '.testpass'
175
- end
176
- File.open(test_results, 'w') { |f| f.print output }
177
- end
178
- end
@@ -1,9 +0,0 @@
1
- Copyright (c) 2010 James Grenning and Contributed to Unity Project
2
-
3
- Unity Project - A Test Framework for C
4
- Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
5
- [Released under MIT License. Please refer to license.txt for details]
6
-
7
- This Framework is an optional add-on to Unity. By including unity_framework.h in place of unity.h,
8
- you may now work with Unity in a manner similar to CppUTest. This framework adds the concepts of
9
- test groups and gives finer control of your tests over the command line.
@@ -1,381 +0,0 @@
1
- //- Copyright (c) 2010 James Grenning and Contributed to Unity Project
2
- /* ==========================================
3
- Unity Project - A Test Framework for C
4
- Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
5
- [Released under MIT License. Please refer to license.txt for details]
6
- ========================================== */
7
-
8
- #include "unity_fixture.h"
9
- #include "unity_internals.h"
10
- #include <string.h>
11
-
12
- UNITY_FIXTURE_T UnityFixture;
13
-
14
- //If you decide to use the function pointer approach.
15
- int (*outputChar)(int) = putchar;
16
-
17
- int verbose = 0;
18
-
19
- void setUp(void) { /*does nothing*/ }
20
- void tearDown(void) { /*does nothing*/ }
21
-
22
- void announceTestRun(unsigned int runNumber)
23
- {
24
- UnityPrint("Unity test run ");
25
- UnityPrintNumber(runNumber+1);
26
- UnityPrint(" of ");
27
- UnityPrintNumber(UnityFixture.RepeatCount);
28
- UNITY_OUTPUT_CHAR('\n');
29
- }
30
-
31
- int UnityMain(int argc, char* argv[], void (*runAllTests)())
32
- {
33
- int result = UnityGetCommandLineOptions(argc, argv);
34
- unsigned int r;
35
- if (result != 0)
36
- return result;
37
-
38
- for (r = 0; r < UnityFixture.RepeatCount; r++)
39
- {
40
- announceTestRun(r);
41
- UnityBegin();
42
- runAllTests();
43
- UNITY_OUTPUT_CHAR('\n');
44
- UnityEnd();
45
- }
46
-
47
- return UnityFailureCount();
48
- }
49
-
50
- static int selected(const char * filter, const char * name)
51
- {
52
- if (filter == 0)
53
- return 1;
54
- return strstr(name, filter) ? 1 : 0;
55
- }
56
-
57
- static int testSelected(const char* test)
58
- {
59
- return selected(UnityFixture.NameFilter, test);
60
- }
61
-
62
- static int groupSelected(const char* group)
63
- {
64
- return selected(UnityFixture.GroupFilter, group);
65
- }
66
-
67
- static void runTestCase()
68
- {
69
-
70
- }
71
-
72
- void UnityTestRunner(unityfunction* setup,
73
- unityfunction* testBody,
74
- unityfunction* teardown,
75
- const char * printableName,
76
- const char * group,
77
- const char * name,
78
- const char * file, int line)
79
- {
80
- if (testSelected(name) && groupSelected(group))
81
- {
82
- Unity.CurrentTestFailed = 0;
83
- Unity.TestFile = file;
84
- Unity.CurrentTestName = printableName;
85
- Unity.CurrentTestLineNumber = line;
86
- if (!UnityFixture.Verbose)
87
- UNITY_OUTPUT_CHAR('.');
88
- else
89
- UnityPrint(printableName);
90
-
91
- Unity.NumberOfTests++;
92
- UnityMalloc_StartTest();
93
- UnityPointer_Init();
94
-
95
- runTestCase();
96
- if (TEST_PROTECT())
97
- {
98
- setup();
99
- testBody();
100
- }
101
- if (TEST_PROTECT())
102
- {
103
- teardown();
104
- }
105
- if (TEST_PROTECT())
106
- {
107
- UnityPointer_UndoAllSets();
108
- if (!Unity.CurrentTestFailed)
109
- UnityMalloc_EndTest();
110
- UnityConcludeFixtureTest();
111
- }
112
- else
113
- {
114
- //aborting - jwg - di i need these for the other TEST_PROTECTS?
115
- }
116
- }
117
- }
118
-
119
- void UnityIgnoreTest()
120
- {
121
- Unity.NumberOfTests++;
122
- Unity.CurrentTestIgnored = 1;
123
- UNITY_OUTPUT_CHAR('!');
124
- }
125
-
126
-
127
- //-------------------------------------------------
128
- //Malloc and free stuff
129
- //
130
- #define MALLOC_DONT_FAIL -1
131
- static int malloc_count;
132
- static int malloc_fail_countdown = MALLOC_DONT_FAIL;
133
-
134
- void UnityMalloc_StartTest()
135
- {
136
- malloc_count = 0;
137
- malloc_fail_countdown = MALLOC_DONT_FAIL;
138
- }
139
-
140
- void UnityMalloc_EndTest()
141
- {
142
- malloc_fail_countdown = MALLOC_DONT_FAIL;
143
- if (malloc_count != 0)
144
- {
145
- TEST_FAIL_MESSAGE("This test leaks!");
146
- }
147
- }
148
-
149
- void UnityMalloc_MakeMallocFailAfterCount(int countdown)
150
- {
151
- malloc_fail_countdown = countdown;
152
- }
153
-
154
- #ifdef malloc
155
- #undef malloc
156
- #endif
157
-
158
- #ifdef free
159
- #undef free
160
- #endif
161
-
162
- #include <stdlib.h>
163
- #include <string.h>
164
-
165
- typedef struct GuardBytes
166
- {
167
- int size;
168
- char guard[sizeof(int)];
169
- } Guard;
170
-
171
-
172
- static const char * end = "END";
173
-
174
- void * unity_malloc(size_t size)
175
- {
176
- char* mem;
177
- Guard* guard;
178
-
179
- if (malloc_fail_countdown != MALLOC_DONT_FAIL)
180
- {
181
- if (malloc_fail_countdown == 0)
182
- return 0;
183
- malloc_fail_countdown--;
184
- }
185
-
186
- malloc_count++;
187
-
188
- guard = (Guard*)malloc(size + sizeof(Guard) + 4);
189
- guard->size = size;
190
- mem = (char*)&(guard[1]);
191
- memcpy(&mem[size], end, strlen(end) + 1);
192
-
193
- return (void*)mem;
194
- }
195
-
196
- static int isOverrun(void * mem)
197
- {
198
- Guard* guard = (Guard*)mem;
199
- char* memAsChar = (char*)mem;
200
- guard--;
201
-
202
- return strcmp(&memAsChar[guard->size], end) != 0;
203
- }
204
-
205
- static void release_memory(void * mem)
206
- {
207
- Guard* guard = (Guard*)mem;
208
- guard--;
209
-
210
- malloc_count--;
211
- free(guard);
212
- }
213
-
214
- void unity_free(void * mem)
215
- {
216
- int overrun = isOverrun(mem);//strcmp(&memAsChar[guard->size], end) != 0;
217
- release_memory(mem);
218
- if (overrun)
219
- {
220
- TEST_FAIL_MESSAGE("Buffer overrun detected during free()");
221
- }
222
- }
223
-
224
- void* unity_calloc(size_t num, size_t size)
225
- {
226
- void* mem = unity_malloc(num * size);
227
- memset(mem, 0, num*size);
228
- return mem;
229
- }
230
-
231
- void* unity_realloc(void * oldMem, size_t size)
232
- {
233
- Guard* guard = (Guard*)oldMem;
234
- // char* memAsChar = (char*)oldMem;
235
- void* newMem;
236
-
237
- if (oldMem == 0)
238
- return unity_malloc(size);
239
-
240
- guard--;
241
- if (isOverrun(oldMem))
242
- {
243
- release_memory(oldMem);
244
- TEST_FAIL_MESSAGE("Buffer overrun detected during realloc()");
245
- }
246
-
247
- if (size == 0)
248
- {
249
- release_memory(oldMem);
250
- return 0;
251
- }
252
-
253
- if (guard->size >= size)
254
- return oldMem;
255
-
256
- newMem = unity_malloc(size);
257
- memcpy(newMem, oldMem, size);
258
- unity_free(oldMem);
259
- return newMem;
260
- }
261
-
262
-
263
- //--------------------------------------------------------
264
- //Automatic pointer restoration functions
265
- typedef struct _PointerPair
266
- {
267
- struct _PointerPair * next;
268
- void ** pointer;
269
- void * old_value;
270
- } PointerPair;
271
-
272
- enum {MAX_POINTERS=50};
273
- static PointerPair pointer_store[MAX_POINTERS];
274
- static int pointer_index = 0;
275
-
276
- void UnityPointer_Init()
277
- {
278
- pointer_index = 0;
279
- }
280
-
281
- void UnityPointer_Set(void ** pointer, void * newValue)
282
- {
283
- if (pointer_index >= MAX_POINTERS)
284
- TEST_FAIL_MESSAGE("Too many pointers set");
285
-
286
- pointer_store[pointer_index].pointer = pointer;
287
- pointer_store[pointer_index].old_value = *pointer;
288
- *pointer = newValue;
289
- pointer_index++;
290
- }
291
-
292
- void UnityPointer_UndoAllSets()
293
- {
294
- while (pointer_index > 0)
295
- {
296
- pointer_index--;
297
- *(pointer_store[pointer_index].pointer) =
298
- pointer_store[pointer_index].old_value;
299
-
300
- }
301
- }
302
-
303
- int UnityFailureCount()
304
- {
305
- return Unity.TestFailures;
306
- }
307
-
308
- int UnityGetCommandLineOptions(int argc, char* argv[])
309
- {
310
- int i;
311
- UnityFixture.Verbose = 0;
312
- UnityFixture.GroupFilter = 0;
313
- UnityFixture.NameFilter = 0;
314
- UnityFixture.RepeatCount = 1;
315
-
316
- if (argc == 1)
317
- return 0;
318
-
319
- for (i = 1; i < argc; )
320
- {
321
- if (strcmp(argv[i], "-v") == 0)
322
- {
323
- UnityFixture.Verbose = 1;
324
- i++;
325
- }
326
- else if (strcmp(argv[i], "-g") == 0)
327
- {
328
- i++;
329
- if (i >= argc)
330
- return 1;
331
- UnityFixture.GroupFilter = argv[i];
332
- i++;
333
- }
334
- else if (strcmp(argv[i], "-n") == 0)
335
- {
336
- i++;
337
- if (i >= argc)
338
- return 1;
339
- UnityFixture.NameFilter = argv[i];
340
- i++;
341
- }
342
- else if (strcmp(argv[i], "-r") == 0)
343
- {
344
- UnityFixture.RepeatCount = 2;
345
- i++;
346
- if (i < argc)
347
- {
348
- if (*(argv[i]) >= '0' && *(argv[i]) <= '9')
349
- {
350
- UnityFixture.RepeatCount = atoi(argv[i]);
351
- i++;
352
- }
353
- }
354
- }
355
- }
356
- return 0;
357
- }
358
-
359
- void UnityConcludeFixtureTest()
360
- {
361
- if (Unity.CurrentTestIgnored)
362
- {
363
- Unity.TestIgnores++;
364
- }
365
- else if (!Unity.CurrentTestFailed)
366
- {
367
- if (UnityFixture.Verbose)
368
- {
369
- UnityPrint(" PASS");
370
- UNITY_OUTPUT_CHAR('\n');
371
- }
372
- }
373
- else if (Unity.CurrentTestFailed)
374
- {
375
- Unity.TestFailures++;
376
- }
377
-
378
- Unity.CurrentTestFailed = 0;
379
- Unity.CurrentTestIgnored = 0;
380
- }
381
-