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,81 +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
- #ifndef UNITY_FIXTURE_H_
9
- #define UNITY_FIXTURE_H_
10
-
11
- #include "unity.h"
12
- #include "unity_internals.h"
13
- #include "unity_fixture_malloc_overrides.h"
14
- #include "unity_fixture_internals.h"
15
-
16
- int UnityMain(int argc, char* argv[], void (*runAllTests)());
17
-
18
-
19
- #define TEST_GROUP(group)\
20
- int TEST_GROUP_##group = 0
21
-
22
- #define TEST_SETUP(group) void TEST_##group##_SETUP()
23
-
24
- #define TEST_TEAR_DOWN(group) void TEST_##group##_TEAR_DOWN()
25
-
26
-
27
- #define TEST(group, name) \
28
- void TEST_##group##_##name##_();\
29
- void TEST_##group##_##name##_run()\
30
- {\
31
- UnityTestRunner(TEST_##group##_SETUP,\
32
- TEST_##group##_##name##_,\
33
- TEST_##group##_TEAR_DOWN,\
34
- "TEST(" #group ", " #name ")",\
35
- #group, #name,\
36
- __FILE__, __LINE__);\
37
- }\
38
- void TEST_##group##_##name##_()
39
-
40
- #define IGNORE_TEST(group, name) \
41
- void TEST_##group##_##name##_();\
42
- void TEST_##group##_##name##_run()\
43
- {\
44
- UnityIgnoreTest();\
45
- }\
46
- void TEST_##group##_##name##_()
47
-
48
- #define DECLARE_TEST_CASE(group, name) \
49
- void TEST_##group##_##name##_run()
50
-
51
- #define RUN_TEST_CASE(group, name) \
52
- DECLARE_TEST_CASE(group, name);\
53
- TEST_##group##_##name##_run();
54
-
55
- //This goes at the bottom of each test file or in a separate c file
56
- #define TEST_GROUP_RUNNER(group)\
57
- void TEST_##group##_GROUP_RUNNER_runAll();\
58
- void TEST_##group##_GROUP_RUNNER()\
59
- {\
60
- TEST_##group##_GROUP_RUNNER_runAll();\
61
- }\
62
- void TEST_##group##_GROUP_RUNNER_runAll()
63
-
64
- //Call this from main
65
- #define RUN_TEST_GROUP(group)\
66
- void TEST_##group##_GROUP_RUNNER();\
67
- TEST_##group##_GROUP_RUNNER();
68
-
69
- //CppUTest Compatibility Macros
70
- #define UT_PTR_SET(ptr, newPointerValue) UnityPointer_Set((void**)&ptr, (void*)newPointerValue)
71
- #define TEST_ASSERT_POINTERS_EQUAL(expected, actual) TEST_ASSERT_EQUAL_PTR(expected, actual)
72
- #define TEST_ASSERT_BYTES_EQUAL(expected, actual) TEST_ASSERT_EQUAL_HEX8(0xff & (expected), 0xff & (actual))
73
- #define FAIL(message) TEST_FAIL((message))
74
- #define CHECK(condition) TEST_ASSERT_TRUE((condition))
75
- #define LONGS_EQUAL(expected, actual) TEST_ASSERT_EQUAL_INT((expected), (actual))
76
- #define STRCMP_EQUAL(expected, actual) TEST_ASSERT_EQUAL_STRING((expected), (actual))
77
- #define DOUBLES_EQUAL(expected, actual, delta) TEST_ASSERT_FLOAT_WITHIN(((expected), (actual), (delta))
78
-
79
- void UnityMalloc_MakeMallocFailAfterCount(int count);
80
-
81
- #endif /* UNITY_FIXTURE_H_ */
@@ -1,44 +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
- #ifndef UNITY_FIXTURE_INTERNALS_H_
9
- #define UNITY_FIXTURE_INTERNALS_H_
10
-
11
- typedef struct _UNITY_FIXTURE_T
12
- {
13
- int Verbose;
14
- unsigned int RepeatCount;
15
- const char* NameFilter;
16
- const char* GroupFilter;
17
- } UNITY_FIXTURE_T;
18
-
19
- typedef void unityfunction();
20
- void UnityTestRunner(unityfunction * setup,
21
- unityfunction * body,
22
- unityfunction * teardown,
23
- const char * printableName,
24
- const char * group,
25
- const char * name,
26
- const char * file, int line);
27
-
28
- void UnityIgnoreTest();
29
- void UnityMalloc_StartTest();
30
- void UnityMalloc_EndTest();
31
- int UnityFailureCount();
32
- int UnityGetCommandLineOptions(int argc, char* argv[]);
33
- void UnityConcludeFixtureTest();
34
-
35
- void UnityPointer_Set(void ** ptr, void * newValue);
36
- void UnityPointer_UndoAllSets();
37
- void UnityPointer_Init();
38
-
39
- void UnityAssertEqualPointer(const void * expected,
40
- const void * actual,
41
- const char* msg,
42
- const UNITY_LINE_TYPE lineNumber);
43
-
44
- #endif /* UNITY_FIXTURE_INTERNALS_H_ */
@@ -1,16 +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
- #ifndef UNITY_FIXTURE_MALLOC_OVERRIDES_H_
9
- #define UNITY_FIXTURE_MALLOC_OVERRIDES_H_
10
-
11
- #define malloc unity_malloc
12
- #define calloc unity_calloc
13
- #define realloc unity_realloc
14
- #define free unity_free
15
-
16
- #endif /* UNITY_FIXTURE_MALLOC_OVERRIDES_H_ */
@@ -1,21 +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
-
10
- static void runAllTests()
11
- {
12
- RUN_TEST_GROUP(UnityFixture);
13
- RUN_TEST_GROUP(UnityCommandOptions);
14
- RUN_TEST_GROUP(LeakDetection)
15
- }
16
-
17
- int main(int argc, char* argv[])
18
- {
19
- return UnityMain(argc, argv, runAllTests);
20
- }
21
-
@@ -1,39 +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
-
10
- static int data = -1;
11
-
12
- TEST_GROUP(mygroup);
13
-
14
- TEST_SETUP(mygroup)
15
- {
16
- data = 0;
17
- }
18
-
19
- TEST_TEAR_DOWN(mygroup)
20
- {
21
- data = -1;
22
- }
23
-
24
- TEST(mygroup, test1)
25
- {
26
- TEST_ASSERT_EQUAL_INT(0, data);
27
- }
28
-
29
- TEST(mygroup, test2)
30
- {
31
- TEST_ASSERT_EQUAL_INT(0, data);
32
- data = 5;
33
- }
34
-
35
- TEST(mygroup, test3)
36
- {
37
- data = 7;
38
- TEST_ASSERT_EQUAL_INT(7, data);
39
- }
@@ -1,321 +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_output_Spy.h"
10
- #include <stdlib.h>
11
- #include <string.h>
12
-
13
- extern UNITY_FIXTURE_T UnityFixture;
14
-
15
- TEST_GROUP(UnityFixture);
16
-
17
- TEST_SETUP(UnityFixture)
18
- {
19
- }
20
-
21
- TEST_TEAR_DOWN(UnityFixture)
22
- {
23
- }
24
-
25
- int my_int;
26
- int* pointer1 = 0;
27
- int* pointer2 = (int*)2;
28
- int* pointer3 = (int*)3;
29
- int int1;
30
- int int2;
31
- int int3;
32
- int int4;
33
-
34
- TEST(UnityFixture, PointerSetting)
35
- {
36
- TEST_ASSERT_POINTERS_EQUAL(pointer1, 0);
37
- UT_PTR_SET(pointer1, &int1);
38
- UT_PTR_SET(pointer2, &int2);
39
- UT_PTR_SET(pointer3, &int3);
40
- TEST_ASSERT_POINTERS_EQUAL(pointer1, &int1);
41
- TEST_ASSERT_POINTERS_EQUAL(pointer2, &int2);
42
- TEST_ASSERT_POINTERS_EQUAL(pointer3, &int3);
43
- UT_PTR_SET(pointer1, &int4);
44
- UnityPointer_UndoAllSets();
45
- TEST_ASSERT_POINTERS_EQUAL(pointer1, 0);
46
- TEST_ASSERT_POINTERS_EQUAL(pointer2, (int*)2);
47
- TEST_ASSERT_POINTERS_EQUAL(pointer3, (int*)3);
48
- }
49
-
50
- TEST(UnityFixture, ForceMallocFail)
51
- {
52
- UnityMalloc_MakeMallocFailAfterCount(1);
53
- void* m = malloc(10);
54
- CHECK(m);
55
- void* mfails = malloc(10);
56
- TEST_ASSERT_POINTERS_EQUAL(0, mfails);
57
- free(m);
58
- }
59
-
60
- TEST(UnityFixture, ReallocSmallerIsUnchanged)
61
- {
62
- void* m1 = malloc(10);
63
- void* m2 = realloc(m1, 5);
64
- TEST_ASSERT_POINTERS_EQUAL(m1, m2);
65
- free(m2);
66
- }
67
-
68
- TEST(UnityFixture, ReallocSameIsUnchanged)
69
- {
70
- void* m1 = malloc(10);
71
- void* m2 = realloc(m1, 10);
72
- TEST_ASSERT_POINTERS_EQUAL(m1, m2);
73
- free(m2);
74
- }
75
-
76
- TEST(UnityFixture, ReallocLargerNeeded)
77
- {
78
- void* m1 = malloc(10);
79
- strcpy((char*)m1, "123456789");
80
- void* m2 = realloc(m1, 15);
81
- CHECK(m1 != m2);
82
- STRCMP_EQUAL("123456789", m2);
83
- free(m2);
84
- }
85
-
86
- TEST(UnityFixture, ReallocNullPointerIsLikeMalloc)
87
- {
88
- void* m = realloc(0, 15);
89
- CHECK(m != 0);
90
- free(m);
91
- }
92
-
93
- TEST(UnityFixture, ReallocSizeZeroFreesMemAndReturnsNullPointer)
94
- {
95
- void* m1 = malloc(10);
96
- void* m2 = realloc(m1, 0);
97
- TEST_ASSERT_POINTERS_EQUAL(0, m2);
98
- }
99
-
100
- TEST(UnityFixture, CallocFillsWithZero)
101
- {
102
- void* m = calloc(3, sizeof(char));
103
- char* s = (char*)m;
104
- TEST_ASSERT_BYTES_EQUAL(0, s[0]);
105
- TEST_ASSERT_BYTES_EQUAL(0, s[1]);
106
- TEST_ASSERT_BYTES_EQUAL(0, s[2]);
107
- free(m);
108
- }
109
-
110
- char *p1;
111
- char *p2;
112
-
113
- TEST(UnityFixture, PointerSet)
114
- {
115
- char c1;
116
- char c2;
117
- char newC1;
118
- char newC2;
119
- p1 = &c1;
120
- p2 = &c2;
121
-
122
- UnityPointer_Init(10);
123
- UT_PTR_SET(p1, &newC1);
124
- UT_PTR_SET(p2, &newC2);
125
- TEST_ASSERT_POINTERS_EQUAL(&newC1, p1);
126
- TEST_ASSERT_POINTERS_EQUAL(&newC2, p2);
127
- UnityPointer_UndoAllSets();
128
- TEST_ASSERT_POINTERS_EQUAL(&c1, p1);
129
- TEST_ASSERT_POINTERS_EQUAL(&c2, p2);
130
- }
131
-
132
- //------------------------------------------------------------
133
-
134
- TEST_GROUP(UnityCommandOptions);
135
-
136
- int savedVerbose;
137
- int savedRepeat;
138
- const char* savedName;
139
- const char* savedGroup;
140
-
141
- TEST_SETUP(UnityCommandOptions)
142
- {
143
- savedVerbose = UnityFixture.Verbose;
144
- savedRepeat = UnityFixture.RepeatCount;
145
- savedName = UnityFixture.NameFilter;
146
- savedGroup = UnityFixture.GroupFilter;
147
- }
148
-
149
- TEST_TEAR_DOWN(UnityCommandOptions)
150
- {
151
- UnityFixture.Verbose = savedVerbose;
152
- UnityFixture.RepeatCount= savedRepeat;
153
- UnityFixture.NameFilter = savedName;
154
- UnityFixture.GroupFilter = savedGroup;
155
- }
156
-
157
-
158
- static char* noOptions[] = {
159
- "testrunner.exe"
160
- };
161
-
162
- TEST(UnityCommandOptions, DefaultOptions)
163
- {
164
- UnityGetCommandLineOptions(1, noOptions);
165
- TEST_ASSERT_EQUAL(0, UnityFixture.Verbose);
166
- TEST_ASSERT_POINTERS_EQUAL(0, UnityFixture.GroupFilter);
167
- TEST_ASSERT_POINTERS_EQUAL(0, UnityFixture.NameFilter);
168
- TEST_ASSERT_EQUAL(1, UnityFixture.RepeatCount);
169
- }
170
-
171
- static char* verbose[] = {
172
- "testrunner.exe",
173
- "-v"
174
- };
175
-
176
- TEST(UnityCommandOptions, OptionVerbose)
177
- {
178
- TEST_ASSERT_EQUAL(0, UnityGetCommandLineOptions(2, verbose));
179
- TEST_ASSERT_EQUAL(1, UnityFixture.Verbose);
180
- }
181
-
182
- static char* group[] = {
183
- "testrunner.exe",
184
- "-g", "groupname"
185
- };
186
-
187
- TEST(UnityCommandOptions, OptionSelectTestByGroup)
188
- {
189
- TEST_ASSERT_EQUAL(0, UnityGetCommandLineOptions(3, group));
190
- STRCMP_EQUAL("groupname", UnityFixture.GroupFilter);
191
- }
192
-
193
- static char* name[] = {
194
- "testrunner.exe",
195
- "-n", "testname"
196
- };
197
-
198
- TEST(UnityCommandOptions, OptionSelectTestByName)
199
- {
200
- TEST_ASSERT_EQUAL(0, UnityGetCommandLineOptions(3, name));
201
- STRCMP_EQUAL("testname", UnityFixture.NameFilter);
202
- }
203
-
204
- static char* repeat[] = {
205
- "testrunner.exe",
206
- "-r", "99"
207
- };
208
-
209
- TEST(UnityCommandOptions, OptionSelectRepeatTestsDefaultCount)
210
- {
211
- TEST_ASSERT_EQUAL(0, UnityGetCommandLineOptions(2, repeat));
212
- TEST_ASSERT_EQUAL(2, UnityFixture.RepeatCount);
213
- }
214
-
215
- TEST(UnityCommandOptions, OptionSelectRepeatTestsSpecificCount)
216
- {
217
- TEST_ASSERT_EQUAL(0, UnityGetCommandLineOptions(3, repeat));
218
- TEST_ASSERT_EQUAL(99, UnityFixture.RepeatCount);
219
- }
220
-
221
- static char* multiple[] = {
222
- "testrunner.exe",
223
- "-v",
224
- "-g", "groupname",
225
- "-n", "testname",
226
- "-r", "98"
227
- };
228
-
229
- TEST(UnityCommandOptions, MultipleOptions)
230
- {
231
- TEST_ASSERT_EQUAL(0, UnityGetCommandLineOptions(8, multiple));
232
- TEST_ASSERT_EQUAL(1, UnityFixture.Verbose);
233
- STRCMP_EQUAL("groupname", UnityFixture.GroupFilter);
234
- STRCMP_EQUAL("testname", UnityFixture.NameFilter);
235
- TEST_ASSERT_EQUAL(98, UnityFixture.RepeatCount);
236
- }
237
-
238
- static char* dashRNotLast[] = {
239
- "testrunner.exe",
240
- "-v",
241
- "-g", "gggg",
242
- "-r",
243
- "-n", "tttt",
244
- };
245
-
246
- TEST(UnityCommandOptions, MultipleOptionsDashRNotLastAndNoValueSpecified)
247
- {
248
- TEST_ASSERT_EQUAL(0, UnityGetCommandLineOptions(7, dashRNotLast));
249
- TEST_ASSERT_EQUAL(1, UnityFixture.Verbose);
250
- STRCMP_EQUAL("gggg", UnityFixture.GroupFilter);
251
- STRCMP_EQUAL("tttt", UnityFixture.NameFilter);
252
- TEST_ASSERT_EQUAL(2, UnityFixture.RepeatCount);
253
- }
254
-
255
-
256
- //------------------------------------------------------------
257
-
258
- TEST_GROUP(LeakDetection);
259
-
260
- TEST_SETUP(LeakDetection)
261
- {
262
- UnityOutputCharSpy_Create(1000);
263
- }
264
-
265
- TEST_TEAR_DOWN(LeakDetection)
266
- {
267
- UnityOutputCharSpy_Destroy();
268
- }
269
-
270
- #define EXPECT_ABORT_BEGIN \
271
- { \
272
- jmp_buf TestAbortFrame; \
273
- memcpy(TestAbortFrame, Unity.AbortFrame, sizeof(jmp_buf)); \
274
- if (TEST_PROTECT()) \
275
- {
276
-
277
- #define EXPECT_ABORT_END \
278
- } \
279
- memcpy(Unity.AbortFrame, TestAbortFrame, sizeof(jmp_buf)); \
280
- }
281
-
282
- TEST(LeakDetection, DetectsLeak)
283
- {
284
- void* m = malloc(10);
285
- UnityOutputCharSpy_Enable(1);
286
- EXPECT_ABORT_BEGIN
287
- UnityMalloc_EndTest();
288
- EXPECT_ABORT_END
289
- UnityOutputCharSpy_Enable(0);
290
- CHECK(strstr(UnityOutputCharSpy_Get(), "This test leaks!"));
291
- free(m);
292
- Unity.CurrentTestFailed = 0;
293
- }
294
-
295
- TEST(LeakDetection, BufferOverrunFoundDuringFree)
296
- {
297
- void* m = malloc(10);
298
- char* s = (char*)m;
299
- s[10] = (char)0xFF;
300
- UnityOutputCharSpy_Enable(1);
301
- EXPECT_ABORT_BEGIN
302
- free(m);
303
- EXPECT_ABORT_END
304
- UnityOutputCharSpy_Enable(0);
305
- CHECK(strstr(UnityOutputCharSpy_Get(), "Buffer overrun detected during free()"));
306
- Unity.CurrentTestFailed = 0;
307
- }
308
-
309
- TEST(LeakDetection, BufferOverrunFoundDuringRealloc)
310
- {
311
- void* m = malloc(10);
312
- char* s = (char*)m;
313
- s[10] = (char)0xFF;
314
- UnityOutputCharSpy_Enable(1);
315
- EXPECT_ABORT_BEGIN
316
- m = realloc(m, 100);
317
- EXPECT_ABORT_END
318
- UnityOutputCharSpy_Enable(0);
319
- CHECK(strstr(UnityOutputCharSpy_Get(), "Buffer overrun detected during realloc()"));
320
- Unity.CurrentTestFailed = 0;
321
- }