ceedling 0.13.0.rc1 → 0.13.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (426) hide show
  1. data/Gemfile.lock +32 -0
  2. data/README.md +8 -8
  3. data/assets/example_file.c +5 -0
  4. data/assets/example_file.h +6 -0
  5. data/assets/project_as_gem.yml +71 -0
  6. data/assets/{project.yml → project_with_guts.yml} +2 -0
  7. data/assets/rakefile_as_gem.rb +1 -0
  8. data/assets/{rakefile.rb → rakefile_with_guts.rb} +0 -0
  9. data/assets/test_example_file.c +13 -0
  10. data/bin/ceedling +55 -31
  11. data/ceedling-0.13.0.rc4.gem +0 -0
  12. data/ceedling.gemspec +13 -12
  13. data/ceedling.sublime-project +8 -0
  14. data/ceedling.sublime-workspace +365 -0
  15. data/examples/temp_sensor/project.yml +3 -4
  16. data/lib/ceedling.rb +13 -4
  17. data/lib/ceedling/version.rb +3 -3
  18. data/lib/project_file_loader.rb +1 -1
  19. data/lib/rakefile.rb +14 -1
  20. data/lib/target_loader.rb +38 -0
  21. data/plugins/bullseye/{template.erb → assets/template.erb} +0 -0
  22. data/plugins/bullseye/{defaults.yml → config/defaults.yml} +0 -0
  23. data/plugins/bullseye/{bullseye.rb → lib/bullseye.rb} +9 -10
  24. data/spec/spec_system_helper.rb +192 -0
  25. data/spec/system/deployment_spec.rb +116 -0
  26. data/tags +977 -0
  27. data/vendor/c_exception/docs/CExceptionSummary.odt +0 -0
  28. data/vendor/c_exception/docs/CExceptionSummary.pdf +0 -0
  29. data/vendor/c_exception/docs/license.txt +30 -0
  30. data/vendor/c_exception/docs/readme.txt +242 -0
  31. data/vendor/c_exception/makefile +24 -0
  32. data/vendor/c_exception/rakefile.rb +41 -0
  33. data/vendor/c_exception/test/CExceptionConfig.h +44 -0
  34. data/vendor/c_exception/test/TestException.c +328 -0
  35. data/vendor/c_exception/test/TestException_Runner.c +57 -0
  36. data/vendor/c_exception/vendor/unity/auto/colour_prompt.rb +94 -0
  37. data/vendor/c_exception/vendor/unity/auto/colour_reporter.rb +39 -0
  38. data/vendor/c_exception/vendor/unity/auto/generate_config.yml +36 -0
  39. data/vendor/c_exception/vendor/unity/auto/generate_module.rb +202 -0
  40. data/vendor/c_exception/vendor/unity/auto/generate_test_runner.rb +313 -0
  41. data/vendor/c_exception/vendor/unity/auto/test_file_filter.rb +23 -0
  42. data/vendor/c_exception/vendor/unity/auto/unity_test_summary.rb +139 -0
  43. data/vendor/c_exception/vendor/unity/docs/Unity Summary.odt +0 -0
  44. data/vendor/c_exception/vendor/unity/docs/Unity Summary.pdf +0 -0
  45. data/vendor/c_exception/vendor/unity/docs/Unity Summary.txt +217 -0
  46. data/vendor/c_exception/vendor/unity/docs/license.txt +31 -0
  47. data/vendor/c_exception/vendor/unity/examples/helper/UnityHelper.c +10 -0
  48. data/vendor/c_exception/vendor/unity/examples/helper/UnityHelper.h +12 -0
  49. data/vendor/c_exception/vendor/unity/examples/makefile +40 -0
  50. data/vendor/c_exception/vendor/unity/examples/rakefile.rb +32 -0
  51. data/vendor/c_exception/vendor/unity/examples/rakefile_helper.rb +256 -0
  52. data/vendor/c_exception/vendor/unity/examples/readme.txt +18 -0
  53. data/vendor/c_exception/vendor/unity/examples/src/ProductionCode.c +24 -0
  54. data/vendor/c_exception/vendor/unity/examples/src/ProductionCode.h +3 -0
  55. data/vendor/c_exception/vendor/unity/examples/src/ProductionCode2.c +9 -0
  56. data/vendor/c_exception/vendor/unity/examples/src/ProductionCode2.h +2 -0
  57. data/vendor/c_exception/vendor/unity/examples/test/TestProductionCode.c +62 -0
  58. data/vendor/c_exception/vendor/unity/examples/test/TestProductionCode2.c +31 -0
  59. data/vendor/c_exception/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +46 -0
  60. data/vendor/c_exception/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +50 -0
  61. data/vendor/c_exception/vendor/unity/extras/fixture/build/MakefileWorker.mk +331 -0
  62. data/vendor/c_exception/vendor/unity/extras/fixture/build/filterGcov.sh +61 -0
  63. data/vendor/c_exception/vendor/unity/extras/fixture/rakefile.rb +37 -0
  64. data/vendor/c_exception/vendor/unity/extras/fixture/rakefile_helper.rb +178 -0
  65. data/vendor/c_exception/vendor/unity/extras/fixture/readme.txt +9 -0
  66. data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.c +381 -0
  67. data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.h +81 -0
  68. data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_internals.h +44 -0
  69. data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +16 -0
  70. data/vendor/c_exception/vendor/unity/extras/fixture/test/main/AllTests.c +21 -0
  71. data/vendor/c_exception/vendor/unity/extras/fixture/test/testunity_fixture.c +39 -0
  72. data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_Test.c +321 -0
  73. data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +40 -0
  74. data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.c +56 -0
  75. data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.h +17 -0
  76. data/vendor/c_exception/vendor/unity/makefile +35 -0
  77. data/vendor/c_exception/vendor/unity/rakefile.rb +59 -0
  78. data/vendor/c_exception/vendor/unity/rakefile_helper.rb +240 -0
  79. data/vendor/c_exception/vendor/unity/release/build.info +2 -0
  80. data/vendor/c_exception/vendor/unity/release/version.info +2 -0
  81. data/vendor/c_exception/vendor/unity/src/unity.c +979 -0
  82. data/vendor/c_exception/vendor/unity/src/unity.h +232 -0
  83. data/vendor/c_exception/vendor/unity/src/unity_internals.h +424 -0
  84. data/vendor/c_exception/vendor/unity/targets/gcc.yml +43 -0
  85. data/vendor/c_exception/vendor/unity/targets/gcc_64.yml +44 -0
  86. data/vendor/c_exception/vendor/unity/targets/hitech_picc18.yml +101 -0
  87. data/vendor/c_exception/vendor/unity/targets/iar_arm_v4.yml +89 -0
  88. data/vendor/c_exception/vendor/unity/targets/iar_arm_v5.yml +79 -0
  89. data/vendor/c_exception/vendor/unity/targets/iar_arm_v5_3.yml +79 -0
  90. data/vendor/c_exception/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +93 -0
  91. data/vendor/c_exception/vendor/unity/targets/iar_cortexm3_v5.yml +83 -0
  92. data/vendor/c_exception/vendor/unity/targets/iar_msp430.yml +94 -0
  93. data/vendor/c_exception/vendor/unity/targets/iar_sh2a_v6.yml +85 -0
  94. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_cmd.c +54 -0
  95. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_def.c +50 -0
  96. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_cmd.c +76 -0
  97. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_def.c +72 -0
  98. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new1.c +85 -0
  99. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new2.c +85 -0
  100. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_param.c +73 -0
  101. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run1.c +85 -0
  102. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run2.c +85 -0
  103. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_yaml.c +86 -0
  104. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_new1.c +60 -0
  105. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_new2.c +63 -0
  106. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_param.c +51 -0
  107. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_run1.c +60 -0
  108. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_run2.c +63 -0
  109. data/vendor/c_exception/vendor/unity/test/expectdata/testsample_yaml.c +64 -0
  110. data/vendor/c_exception/vendor/unity/test/test_generate_test_runner.rb +94 -0
  111. data/vendor/c_exception/vendor/unity/test/testdata/mocksample.c +51 -0
  112. data/vendor/c_exception/vendor/unity/test/testdata/sample.yml +9 -0
  113. data/vendor/c_exception/vendor/unity/test/testdata/testsample.c +51 -0
  114. data/vendor/c_exception/vendor/unity/test/testparameterized.c +101 -0
  115. data/vendor/c_exception/vendor/unity/test/testunity.c +2024 -0
  116. data/vendor/cmock/docs/CMock Summary.odt +0 -0
  117. data/vendor/cmock/docs/CMock Summary.pdf +0 -0
  118. data/vendor/cmock/docs/CMock_Summary.md +356 -0
  119. data/vendor/cmock/docs/license.txt +31 -0
  120. data/vendor/cmock/examples/gcc.yml +43 -0
  121. data/vendor/cmock/examples/iar_v4.yml +91 -0
  122. data/vendor/cmock/examples/iar_v5.yml +80 -0
  123. data/vendor/cmock/examples/rakefile.rb +32 -0
  124. data/vendor/cmock/examples/rakefile_helper.rb +270 -0
  125. data/vendor/cmock/examples/src/AT91SAM7X256.h +2556 -0
  126. data/vendor/cmock/examples/src/AdcConductor.c +42 -0
  127. data/vendor/cmock/examples/src/AdcConductor.h +11 -0
  128. data/vendor/cmock/examples/src/AdcHardware.c +27 -0
  129. data/vendor/cmock/examples/src/AdcHardware.h +9 -0
  130. data/vendor/cmock/examples/src/AdcHardwareConfigurator.c +18 -0
  131. data/vendor/cmock/examples/src/AdcHardwareConfigurator.h +10 -0
  132. data/vendor/cmock/examples/src/AdcModel.c +33 -0
  133. data/vendor/cmock/examples/src/AdcModel.h +13 -0
  134. data/vendor/cmock/examples/src/AdcTemperatureSensor.c +51 -0
  135. data/vendor/cmock/examples/src/AdcTemperatureSensor.h +10 -0
  136. data/vendor/cmock/examples/src/Executor.c +25 -0
  137. data/vendor/cmock/examples/src/Executor.h +9 -0
  138. data/vendor/cmock/examples/src/IntrinsicsWrapper.c +18 -0
  139. data/vendor/cmock/examples/src/IntrinsicsWrapper.h +7 -0
  140. data/vendor/cmock/examples/src/Main.c +46 -0
  141. data/vendor/cmock/examples/src/Main.h +7 -0
  142. data/vendor/cmock/examples/src/Model.c +10 -0
  143. data/vendor/cmock/examples/src/Model.h +8 -0
  144. data/vendor/cmock/examples/src/ModelConfig.h +7 -0
  145. data/vendor/cmock/examples/src/TaskScheduler.c +72 -0
  146. data/vendor/cmock/examples/src/TaskScheduler.h +11 -0
  147. data/vendor/cmock/examples/src/TemperatureCalculator.c +27 -0
  148. data/vendor/cmock/examples/src/TemperatureCalculator.h +6 -0
  149. data/vendor/cmock/examples/src/TemperatureFilter.c +39 -0
  150. data/vendor/cmock/examples/src/TemperatureFilter.h +10 -0
  151. data/vendor/cmock/examples/src/TimerConductor.c +15 -0
  152. data/vendor/cmock/examples/src/TimerConductor.h +9 -0
  153. data/vendor/cmock/examples/src/TimerConfigurator.c +51 -0
  154. data/vendor/cmock/examples/src/TimerConfigurator.h +15 -0
  155. data/vendor/cmock/examples/src/TimerHardware.c +15 -0
  156. data/vendor/cmock/examples/src/TimerHardware.h +8 -0
  157. data/vendor/cmock/examples/src/TimerInterruptConfigurator.c +55 -0
  158. data/vendor/cmock/examples/src/TimerInterruptConfigurator.h +13 -0
  159. data/vendor/cmock/examples/src/TimerInterruptHandler.c +25 -0
  160. data/vendor/cmock/examples/src/TimerInterruptHandler.h +10 -0
  161. data/vendor/cmock/examples/src/TimerModel.c +9 -0
  162. data/vendor/cmock/examples/src/TimerModel.h +8 -0
  163. data/vendor/cmock/examples/src/Types.h +103 -0
  164. data/vendor/cmock/examples/src/UsartBaudRateRegisterCalculator.c +18 -0
  165. data/vendor/cmock/examples/src/UsartBaudRateRegisterCalculator.h +6 -0
  166. data/vendor/cmock/examples/src/UsartConductor.c +21 -0
  167. data/vendor/cmock/examples/src/UsartConductor.h +7 -0
  168. data/vendor/cmock/examples/src/UsartConfigurator.c +39 -0
  169. data/vendor/cmock/examples/src/UsartConfigurator.h +13 -0
  170. data/vendor/cmock/examples/src/UsartHardware.c +22 -0
  171. data/vendor/cmock/examples/src/UsartHardware.h +9 -0
  172. data/vendor/cmock/examples/src/UsartModel.c +34 -0
  173. data/vendor/cmock/examples/src/UsartModel.h +10 -0
  174. data/vendor/cmock/examples/src/UsartPutChar.c +16 -0
  175. data/vendor/cmock/examples/src/UsartPutChar.h +8 -0
  176. data/vendor/cmock/examples/src/UsartTransmitBufferStatus.c +7 -0
  177. data/vendor/cmock/examples/src/UsartTransmitBufferStatus.h +8 -0
  178. data/vendor/cmock/examples/test/TestAdcConductor.c +121 -0
  179. data/vendor/cmock/examples/test/TestAdcHardware.c +44 -0
  180. data/vendor/cmock/examples/test/TestAdcHardwareConfigurator.c +43 -0
  181. data/vendor/cmock/examples/test/TestAdcModel.c +33 -0
  182. data/vendor/cmock/examples/test/TestAdcTemperatureSensor.c +47 -0
  183. data/vendor/cmock/examples/test/TestExecutor.c +36 -0
  184. data/vendor/cmock/examples/test/TestMain.c +24 -0
  185. data/vendor/cmock/examples/test/TestModel.c +20 -0
  186. data/vendor/cmock/examples/test/TestTaskScheduler.c +104 -0
  187. data/vendor/cmock/examples/test/TestTemperatureCalculator.c +33 -0
  188. data/vendor/cmock/examples/test/TestTemperatureFilter.c +69 -0
  189. data/vendor/cmock/examples/test/TestTimerConductor.c +32 -0
  190. data/vendor/cmock/examples/test/TestTimerConfigurator.c +112 -0
  191. data/vendor/cmock/examples/test/TestTimerHardware.c +26 -0
  192. data/vendor/cmock/examples/test/TestTimerInterruptConfigurator.c +78 -0
  193. data/vendor/cmock/examples/test/TestTimerInterruptHandler.c +66 -0
  194. data/vendor/cmock/examples/test/TestTimerModel.c +18 -0
  195. data/vendor/cmock/examples/test/TestUsartBaudRateRegisterCalculator.c +21 -0
  196. data/vendor/cmock/examples/test/TestUsartConductor.c +40 -0
  197. data/vendor/cmock/examples/test/TestUsartConfigurator.c +77 -0
  198. data/vendor/cmock/examples/test/TestUsartHardware.c +37 -0
  199. data/vendor/cmock/examples/test/TestUsartModel.c +40 -0
  200. data/vendor/cmock/examples/test/TestUsartPutChar.c +43 -0
  201. data/vendor/cmock/examples/test/TestUsartTransmitBufferStatus.c +22 -0
  202. data/vendor/cmock/iar/iar_v4/Resource/SAM7_FLASH.mac +71 -0
  203. data/vendor/cmock/iar/iar_v4/Resource/SAM7_RAM.mac +94 -0
  204. data/vendor/cmock/iar/iar_v4/Resource/SAM7_SIM.mac +67 -0
  205. data/vendor/cmock/iar/iar_v4/Resource/at91SAM7X256_FLASH.xcl +185 -0
  206. data/vendor/cmock/iar/iar_v4/Resource/at91SAM7X256_RAM.xcl +185 -0
  207. data/vendor/cmock/iar/iar_v4/Resource/ioat91sam7x256.ddf +2259 -0
  208. data/vendor/cmock/iar/iar_v4/cmock_demo.dep +3691 -0
  209. data/vendor/cmock/iar/iar_v4/cmock_demo.ewd +1696 -0
  210. data/vendor/cmock/iar/iar_v4/cmock_demo.ewp +2581 -0
  211. data/vendor/cmock/iar/iar_v4/cmock_demo.eww +10 -0
  212. data/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X-EK.h +61 -0
  213. data/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.inc +2314 -0
  214. data/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.rdf +4704 -0
  215. data/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.tcl +3407 -0
  216. data/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256_inc.h +2268 -0
  217. data/vendor/cmock/iar/iar_v4/incIAR/ioat91sam7x256.h +4380 -0
  218. data/vendor/cmock/iar/iar_v4/incIAR/lib_AT91SAM7X256.h +4211 -0
  219. data/vendor/cmock/iar/iar_v4/settings/cmock_demo.cspy.bat +32 -0
  220. data/vendor/cmock/iar/iar_v4/settings/cmock_demo.dbgdt +86 -0
  221. data/vendor/cmock/iar/iar_v4/settings/cmock_demo.dni +42 -0
  222. data/vendor/cmock/iar/iar_v4/settings/cmock_demo.wsdt +76 -0
  223. data/vendor/cmock/iar/iar_v4/srcIAR/Cstartup.s79 +266 -0
  224. data/vendor/cmock/iar/iar_v4/srcIAR/Cstartup_SAM7.c +98 -0
  225. data/vendor/cmock/iar/iar_v5/Resource/SAM7_FLASH.mac +71 -0
  226. data/vendor/cmock/iar/iar_v5/Resource/SAM7_RAM.mac +94 -0
  227. data/vendor/cmock/iar/iar_v5/Resource/SAM7_SIM.mac +67 -0
  228. data/vendor/cmock/iar/iar_v5/Resource/at91SAM7X256_FLASH.icf +43 -0
  229. data/vendor/cmock/iar/iar_v5/Resource/at91SAM7X256_RAM.icf +42 -0
  230. data/vendor/cmock/iar/iar_v5/cmock_demo.dep +4204 -0
  231. data/vendor/cmock/iar/iar_v5/cmock_demo.ewd +1906 -0
  232. data/vendor/cmock/iar/iar_v5/cmock_demo.ewp +2426 -0
  233. data/vendor/cmock/iar/iar_v5/cmock_demo.eww +26 -0
  234. data/vendor/cmock/iar/iar_v5/incIAR/AT91SAM7X-EK.h +61 -0
  235. data/vendor/cmock/iar/iar_v5/incIAR/AT91SAM7X256_inc.h +2268 -0
  236. data/vendor/cmock/iar/iar_v5/incIAR/lib_AT91SAM7X256.h +4211 -0
  237. data/vendor/cmock/iar/iar_v5/incIAR/project.h +30 -0
  238. data/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.cspy.bat +33 -0
  239. data/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.dbgdt +5 -0
  240. data/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.dni +18 -0
  241. data/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.wsdt +74 -0
  242. data/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X_FLASH_Debug.jlink +12 -0
  243. data/vendor/cmock/iar/iar_v5/settings/cmock_demo.cspy.bat +33 -0
  244. data/vendor/cmock/iar/iar_v5/settings/cmock_demo.dbgdt +85 -0
  245. data/vendor/cmock/iar/iar_v5/settings/cmock_demo.dni +44 -0
  246. data/vendor/cmock/iar/iar_v5/settings/cmock_demo.wsdt +73 -0
  247. data/vendor/cmock/iar/iar_v5/settings/cmock_demo_Binary.jlink +12 -0
  248. data/vendor/cmock/iar/iar_v5/settings/cmock_demo_FLASH_Debug.jlink +12 -0
  249. data/vendor/cmock/iar/iar_v5/settings/cmock_demo_RAM_Debug.jlink +12 -0
  250. data/vendor/cmock/iar/iar_v5/srcIAR/Cstartup.s +299 -0
  251. data/vendor/cmock/iar/iar_v5/srcIAR/Cstartup_SAM7.c +98 -0
  252. data/vendor/cmock/rakefile.rb +111 -0
  253. data/vendor/cmock/rakefile_helper.rb +381 -0
  254. data/vendor/cmock/targets/gcc.yml +53 -0
  255. data/vendor/cmock/targets/iar_arm_v4.yml +108 -0
  256. data/vendor/cmock/targets/iar_arm_v5.yml +93 -0
  257. data/vendor/cmock/test/c/TestCMockC.c +280 -0
  258. data/vendor/cmock/test/c/TestCMockC.yml +12 -0
  259. data/vendor/cmock/test/c/TestCMockCDynamic.c +186 -0
  260. data/vendor/cmock/test/c/TestCMockCDynamic.yml +12 -0
  261. data/vendor/cmock/test/c/TestCMockCDynamic_Runner.c +35 -0
  262. data/vendor/cmock/test/c/TestCMockC_Runner.c +37 -0
  263. data/vendor/cmock/test/spec/cmock_file_writer_spec.rb +25 -0
  264. data/vendor/cmock/test/spec/spec_helper.rb +12 -0
  265. data/vendor/cmock/test/system/systest_generator.rb +178 -0
  266. data/vendor/cmock/test/system/test_compilation/callingconv.h +11 -0
  267. data/vendor/cmock/test/system/test_compilation/config.yml +9 -0
  268. data/vendor/cmock/test/system/test_compilation/const.h +15 -0
  269. data/vendor/cmock/test/system/test_compilation/osek.h +275 -0
  270. data/vendor/cmock/test/system/test_compilation/parsing.h +47 -0
  271. data/vendor/cmock/test/system/test_interactions/all_plugins_but_other_limits.yml +341 -0
  272. data/vendor/cmock/test/system/test_interactions/all_plugins_coexist.yml +382 -0
  273. data/vendor/cmock/test/system/test_interactions/array_and_pointer_handling.yml +382 -0
  274. data/vendor/cmock/test/system/test_interactions/basic_expect_and_return.yml +123 -0
  275. data/vendor/cmock/test/system/test_interactions/const_primitives_handling.yml +87 -0
  276. data/vendor/cmock/test/system/test_interactions/enforce_strict_ordering.yml +247 -0
  277. data/vendor/cmock/test/system/test_interactions/expect_and_return_custom_types.yml +108 -0
  278. data/vendor/cmock/test/system/test_interactions/expect_and_return_treat_as.yml +173 -0
  279. data/vendor/cmock/test/system/test_interactions/expect_and_throw.yml +170 -0
  280. data/vendor/cmock/test/system/test_interactions/fancy_pointer_handling.yml +208 -0
  281. data/vendor/cmock/test/system/test_interactions/function_pointer_handling.yml +82 -0
  282. data/vendor/cmock/test/system/test_interactions/ignore_and_return.yml +153 -0
  283. data/vendor/cmock/test/system/test_interactions/newer_standards_stuff1.yml +52 -0
  284. data/vendor/cmock/test/system/test_interactions/nonstandard_parsed_stuff_1.yml +91 -0
  285. data/vendor/cmock/test/system/test_interactions/nonstandard_parsed_stuff_2.yml +59 -0
  286. data/vendor/cmock/test/system/test_interactions/parsing_challenges.yml +222 -0
  287. data/vendor/cmock/test/system/test_interactions/struct_union_enum_expect_and_return.yml +277 -0
  288. data/vendor/cmock/test/system/test_interactions/stubs_with_callbacks.yml +221 -0
  289. data/vendor/cmock/test/system/test_interactions/unity_64bit_support.yml +77 -0
  290. data/vendor/cmock/test/system/test_interactions/unity_ignores.yml +139 -0
  291. data/vendor/cmock/test/test_helper.rb +44 -0
  292. data/vendor/cmock/test/unit/cmock_config_test.rb +121 -0
  293. data/vendor/cmock/test/unit/cmock_config_test.yml +5 -0
  294. data/vendor/cmock/test/unit/cmock_file_writer_test.rb +30 -0
  295. data/vendor/cmock/test/unit/cmock_generator_main_test.rb +413 -0
  296. data/vendor/cmock/test/unit/cmock_generator_plugin_array_test.rb +114 -0
  297. data/vendor/cmock/test/unit/cmock_generator_plugin_callback_test.rb +190 -0
  298. data/vendor/cmock/test/unit/cmock_generator_plugin_cexception_test.rb +94 -0
  299. data/vendor/cmock/test/unit/cmock_generator_plugin_expect_test.rb +206 -0
  300. data/vendor/cmock/test/unit/cmock_generator_plugin_ignore_test.rb +168 -0
  301. data/vendor/cmock/test/unit/cmock_generator_utils_test.rb +291 -0
  302. data/vendor/cmock/test/unit/cmock_header_parser_test.rb +1247 -0
  303. data/vendor/cmock/test/unit/cmock_plugin_manager_test.rb +85 -0
  304. data/vendor/cmock/test/unit/cmock_unityhelper_parser_test.rb +223 -0
  305. data/vendor/cmock/vendor/behaviors/Manifest.txt +9 -0
  306. data/vendor/cmock/vendor/behaviors/Rakefile +19 -0
  307. data/vendor/cmock/vendor/behaviors/lib/behaviors.rb +76 -0
  308. data/vendor/cmock/vendor/behaviors/lib/behaviors/reporttask.rb +158 -0
  309. data/vendor/cmock/vendor/behaviors/test/behaviors_tasks_test.rb +73 -0
  310. data/vendor/cmock/vendor/behaviors/test/behaviors_test.rb +50 -0
  311. data/vendor/cmock/vendor/behaviors/test/tasks_test/Rakefile +19 -0
  312. data/vendor/cmock/vendor/behaviors/test/tasks_test/lib/user.rb +2 -0
  313. data/vendor/cmock/vendor/behaviors/test/tasks_test/test/user_test.rb +17 -0
  314. data/vendor/cmock/vendor/hardmock/CHANGES +78 -0
  315. data/vendor/cmock/vendor/hardmock/LICENSE +7 -0
  316. data/vendor/cmock/vendor/hardmock/README +70 -0
  317. data/vendor/cmock/vendor/hardmock/Rakefile +8 -0
  318. data/vendor/cmock/vendor/hardmock/config/environment.rb +12 -0
  319. data/vendor/cmock/vendor/hardmock/lib/assert_error.rb +23 -0
  320. data/vendor/cmock/vendor/hardmock/lib/extend_test_unit.rb +14 -0
  321. data/vendor/cmock/vendor/hardmock/lib/hardmock.rb +86 -0
  322. data/vendor/cmock/vendor/hardmock/lib/hardmock/errors.rb +22 -0
  323. data/vendor/cmock/vendor/hardmock/lib/hardmock/expectation.rb +229 -0
  324. data/vendor/cmock/vendor/hardmock/lib/hardmock/expectation_builder.rb +9 -0
  325. data/vendor/cmock/vendor/hardmock/lib/hardmock/expector.rb +26 -0
  326. data/vendor/cmock/vendor/hardmock/lib/hardmock/method_cleanout.rb +33 -0
  327. data/vendor/cmock/vendor/hardmock/lib/hardmock/mock.rb +180 -0
  328. data/vendor/cmock/vendor/hardmock/lib/hardmock/mock_control.rb +53 -0
  329. data/vendor/cmock/vendor/hardmock/lib/hardmock/stubbing.rb +210 -0
  330. data/vendor/cmock/vendor/hardmock/lib/hardmock/trapper.rb +31 -0
  331. data/vendor/cmock/vendor/hardmock/lib/hardmock/utils.rb +9 -0
  332. data/vendor/cmock/vendor/hardmock/lib/test_unit_before_after.rb +169 -0
  333. data/vendor/cmock/vendor/hardmock/rake_tasks/rdoc.rake +19 -0
  334. data/vendor/cmock/vendor/hardmock/rake_tasks/rdoc_options.rb +4 -0
  335. data/vendor/cmock/vendor/hardmock/rake_tasks/test.rake +22 -0
  336. data/vendor/cmock/vendor/hardmock/test/functional/assert_error_test.rb +52 -0
  337. data/vendor/cmock/vendor/hardmock/test/functional/auto_verify_test.rb +178 -0
  338. data/vendor/cmock/vendor/hardmock/test/functional/direct_mock_usage_test.rb +396 -0
  339. data/vendor/cmock/vendor/hardmock/test/functional/hardmock_test.rb +434 -0
  340. data/vendor/cmock/vendor/hardmock/test/functional/stubbing_test.rb +479 -0
  341. data/vendor/cmock/vendor/hardmock/test/test_helper.rb +43 -0
  342. data/vendor/cmock/vendor/hardmock/test/unit/expectation_builder_test.rb +19 -0
  343. data/vendor/cmock/vendor/hardmock/test/unit/expectation_test.rb +372 -0
  344. data/vendor/cmock/vendor/hardmock/test/unit/expector_test.rb +57 -0
  345. data/vendor/cmock/vendor/hardmock/test/unit/method_cleanout_test.rb +36 -0
  346. data/vendor/cmock/vendor/hardmock/test/unit/mock_control_test.rb +175 -0
  347. data/vendor/cmock/vendor/hardmock/test/unit/mock_test.rb +279 -0
  348. data/vendor/cmock/vendor/hardmock/test/unit/test_unit_before_after_test.rb +452 -0
  349. data/vendor/cmock/vendor/hardmock/test/unit/trapper_test.rb +62 -0
  350. data/vendor/cmock/vendor/hardmock/test/unit/verify_error_test.rb +40 -0
  351. data/vendor/unity/auto/generate_config.yml +36 -0
  352. data/vendor/unity/auto/unity_test_summary.rb +2 -2
  353. data/vendor/unity/docs/Unity Summary.odt +0 -0
  354. data/vendor/unity/docs/Unity Summary.pdf +0 -0
  355. data/vendor/unity/docs/Unity Summary.txt +216 -0
  356. data/vendor/unity/docs/license.txt +31 -0
  357. data/vendor/unity/examples/helper/UnityHelper.c +10 -0
  358. data/vendor/unity/examples/helper/UnityHelper.h +12 -0
  359. data/vendor/unity/examples/makefile +40 -0
  360. data/vendor/unity/examples/rakefile.rb +32 -0
  361. data/vendor/unity/examples/rakefile_helper.rb +256 -0
  362. data/vendor/unity/examples/readme.txt +18 -0
  363. data/vendor/unity/examples/src/ProductionCode.c +24 -0
  364. data/vendor/unity/examples/src/ProductionCode.h +3 -0
  365. data/vendor/unity/examples/src/ProductionCode2.c +9 -0
  366. data/vendor/unity/examples/src/ProductionCode2.h +2 -0
  367. data/vendor/unity/examples/test/TestProductionCode.c +62 -0
  368. data/vendor/unity/examples/test/TestProductionCode2.c +31 -0
  369. data/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +46 -0
  370. data/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +50 -0
  371. data/vendor/unity/extras/fixture/build/MakefileWorker.mk +331 -0
  372. data/vendor/unity/extras/fixture/build/filterGcov.sh +61 -0
  373. data/vendor/unity/extras/fixture/rakefile.rb +37 -0
  374. data/vendor/unity/extras/fixture/rakefile_helper.rb +178 -0
  375. data/vendor/unity/extras/fixture/readme.txt +9 -0
  376. data/vendor/unity/extras/fixture/src/unity_fixture.c +381 -0
  377. data/vendor/unity/extras/fixture/src/unity_fixture.h +81 -0
  378. data/vendor/unity/extras/fixture/src/unity_fixture_internals.h +44 -0
  379. data/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +16 -0
  380. data/vendor/unity/extras/fixture/test/main/AllTests.c +21 -0
  381. data/vendor/unity/extras/fixture/test/testunity_fixture.c +39 -0
  382. data/vendor/unity/extras/fixture/test/unity_fixture_Test.c +321 -0
  383. data/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +40 -0
  384. data/vendor/unity/extras/fixture/test/unity_output_Spy.c +56 -0
  385. data/vendor/unity/extras/fixture/test/unity_output_Spy.h +17 -0
  386. data/vendor/unity/makefile +35 -0
  387. data/vendor/unity/rakefile.rb +59 -0
  388. data/vendor/unity/rakefile_helper.rb +240 -0
  389. data/vendor/unity/release/version.info +1 -1
  390. data/vendor/unity/src/unity.c +1 -1
  391. data/vendor/unity/src/unity_internals.h +5 -5
  392. data/vendor/unity/targets/gcc_32.yml +44 -0
  393. data/vendor/unity/targets/hitech_picc18.yml +101 -0
  394. data/vendor/unity/targets/iar_arm_v4.yml +89 -0
  395. data/vendor/unity/targets/iar_arm_v5.yml +79 -0
  396. data/vendor/unity/targets/iar_arm_v5_3.yml +79 -0
  397. data/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +93 -0
  398. data/vendor/unity/targets/iar_cortexm3_v5.yml +83 -0
  399. data/vendor/unity/targets/iar_msp430.yml +94 -0
  400. data/vendor/unity/targets/iar_sh2a_v6.yml +85 -0
  401. data/vendor/unity/test/expectdata/testsample_cmd.c +54 -0
  402. data/vendor/unity/test/expectdata/testsample_def.c +50 -0
  403. data/vendor/unity/test/expectdata/testsample_mock_cmd.c +76 -0
  404. data/vendor/unity/test/expectdata/testsample_mock_def.c +72 -0
  405. data/vendor/unity/test/expectdata/testsample_mock_new1.c +85 -0
  406. data/vendor/unity/test/expectdata/testsample_mock_new2.c +85 -0
  407. data/vendor/unity/test/expectdata/testsample_mock_param.c +73 -0
  408. data/vendor/unity/test/expectdata/testsample_mock_run1.c +85 -0
  409. data/vendor/unity/test/expectdata/testsample_mock_run2.c +85 -0
  410. data/vendor/unity/test/expectdata/testsample_mock_yaml.c +86 -0
  411. data/vendor/unity/test/expectdata/testsample_new1.c +60 -0
  412. data/vendor/unity/test/expectdata/testsample_new2.c +63 -0
  413. data/vendor/unity/test/expectdata/testsample_param.c +51 -0
  414. data/vendor/unity/test/expectdata/testsample_run1.c +60 -0
  415. data/vendor/unity/test/expectdata/testsample_run2.c +63 -0
  416. data/vendor/unity/test/expectdata/testsample_yaml.c +64 -0
  417. data/vendor/unity/test/test_generate_test_runner.rb +94 -0
  418. data/vendor/unity/test/testdata/mocksample.c +51 -0
  419. data/vendor/unity/test/testdata/sample.yml +9 -0
  420. data/vendor/unity/test/testdata/testsample.c +51 -0
  421. data/vendor/unity/test/testparameterized.c +101 -0
  422. data/vendor/unity/test/testunity.c +2559 -0
  423. metadata +464 -53
  424. data/.gitignore +0 -6
  425. data/.gitmodules +0 -9
  426. data/.rspec +0 -1
data/tags ADDED
@@ -0,0 +1,977 @@
1
+ !_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/
2
+ !_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/
3
+ !_TAG_PROGRAM_AUTHOR Darren Hiebert /dhiebert@users.sourceforge.net/
4
+ !_TAG_PROGRAM_NAME Exuberant Ctags //
5
+ !_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/
6
+ !_TAG_PROGRAM_VERSION 5.8 //
7
+ <=> ./lib/configurator_setup.rb /^ def <=>(other)$/;" f class:Symbol
8
+ AdModel_DoNothingExceptTestPointers ./examples/temp_sensor/src/AdcModel.c /^bool AdModel_DoNothingExceptTestPointers(uint32* pExample)$/;" f
9
+ AdcConductor_AlsoHereToTest ./examples/temp_sensor/src/AdcConductor.c /^bool AdcConductor_AlsoHereToTest(void)$/;" f
10
+ AdcConductor_Init ./examples/temp_sensor/src/AdcConductor.c /^void AdcConductor_Init(void)$/;" f
11
+ AdcConductor_JustHereToTest ./examples/temp_sensor/src/AdcConductor.c /^bool AdcConductor_JustHereToTest(void)$/;" f
12
+ AdcConductor_Run ./examples/temp_sensor/src/AdcConductor.c /^void AdcConductor_Run(void)$/;" f
13
+ AdcConductor_YetAnotherTest ./examples/temp_sensor/src/AdcConductor.c /^bool AdcConductor_YetAnotherTest(void)$/;" f
14
+ AdcHardware_GetSample ./examples/temp_sensor/src/AdcHardware.c /^uint16 AdcHardware_GetSample(void)$/;" f
15
+ AdcHardware_GetSampleComplete ./examples/temp_sensor/src/AdcHardware.c /^bool AdcHardware_GetSampleComplete(void)$/;" f
16
+ AdcHardware_Init ./examples/temp_sensor/src/AdcHardware.c /^void AdcHardware_Init(void)$/;" f
17
+ AdcHardware_StartConversion ./examples/temp_sensor/src/AdcHardware.c /^void AdcHardware_StartConversion(void)$/;" f
18
+ AdcModel_DoGetSample ./examples/temp_sensor/src/AdcModel.c /^bool AdcModel_DoGetSample(void)$/;" f
19
+ AdcModel_DoNothingExceptReturnASpecialType ./examples/temp_sensor/src/AdcModel.c /^EXAMPLE_STRUCT_T AdcModel_DoNothingExceptReturnASpecialType(void)$/;" f
20
+ AdcModel_DoNothingExceptTestASpecialType ./examples/temp_sensor/src/AdcModel.c /^bool AdcModel_DoNothingExceptTestASpecialType(EXAMPLE_STRUCT_T ExampleStruct)$/;" f
21
+ AdcModel_ProcessInput ./examples/temp_sensor/src/AdcModel.c /^void AdcModel_ProcessInput(uint16 millivolts)$/;" f
22
+ Adc_ConfigureMode ./examples/temp_sensor/src/AdcHardwareConfigurator.c /^void Adc_ConfigureMode(void)$/;" f
23
+ Adc_EnableTemperatureChannel ./examples/temp_sensor/src/AdcHardwareConfigurator.c /^void Adc_EnableTemperatureChannel(void)$/;" f
24
+ Adc_ReadTemperatureSensor ./examples/temp_sensor/src/AdcTemperatureSensor.c /^uint16 Adc_ReadTemperatureSensor(void)$/;" f
25
+ Adc_Reset ./examples/temp_sensor/src/AdcHardwareConfigurator.c /^void Adc_Reset(void)$/;" f
26
+ Adc_StartTemperatureSensorConversion ./examples/temp_sensor/src/AdcTemperatureSensor.c /^void Adc_StartTemperatureSensorConversion(void)$/;" f
27
+ Adc_TemperatureSensorSampleReady ./examples/temp_sensor/src/AdcTemperatureSensor.c /^bool Adc_TemperatureSensorSampleReady(void)$/;" f
28
+ AppMain ./examples/blinky/src/main.c /^int AppMain(void)$/;" f
29
+ AppMain ./examples/temp_sensor/src/Main.c /^int AppMain(void)$/;" f
30
+ BackgroundExec ./lib/constants.rb /^class BackgroundExec$/;" c
31
+ BlinkTask ./examples/blinky/src/BlinkTask.c /^void BlinkTask(void)$/;" f
32
+ BuildInvokerUtils ./lib/build_invoker_utils.rb /^class BuildInvokerUtils$/;" c
33
+ Bullseye ./plugins/bullseye/lib/bullseye.rb /^class Bullseye < Plugin$/;" c
34
+ Cacheinator ./lib/cacheinator.rb /^class Cacheinator$/;" c
35
+ CacheinatorHelper ./lib/cacheinator_helper.rb /^class CacheinatorHelper$/;" c
36
+ Ceedling ./lib/ceedling/version.rb /^module Ceedling$/;" m
37
+ CeedlingTestCases ./spec/spec_system_helper.rb /^module CeedlingTestCases$/;" m
38
+ ClearInterrupt ./examples/temp_sensor/src/TimerInterruptConfigurator.c /^static inline void ClearInterrupt(void)$/;" f file:
39
+ CmockBuilder ./lib/cmock_builder.rb /^class CmockBuilder$/;" c
40
+ Configurator ./lib/configurator.rb /^class Configurator$/;" c
41
+ ConfiguratorBuilder ./lib/configurator_builder.rb /^class ConfiguratorBuilder$/;" c
42
+ ConfiguratorBuilderTest ./test_graveyard/unit/busted/configurator_builder_test.rb /^class ConfiguratorBuilderTest < Test::Unit::TestCase$/;" c
43
+ ConfiguratorHelperTest ./test_graveyard/unit/busted/configurator_helper_test.rb /^class ConfiguratorHelperTest < Test::Unit::TestCase$/;" c
44
+ ConfiguratorPlugins ./lib/configurator_plugins.rb /^class ConfiguratorPlugins$/;" c
45
+ ConfiguratorSetup ./lib/configurator_setup.rb /^class ConfiguratorSetup$/;" c
46
+ ConfiguratorTest ./test_graveyard/unit/busted/configurator_test.rb /^class ConfiguratorTest < Test::Unit::TestCase$/;" c
47
+ ConfiguratorValidator ./lib/configurator_validator.rb /^class ConfiguratorValidator$/;" c
48
+ ConfiguratorValidatorTest ./test_graveyard/unit/busted/configurator_validator_test.rb /^class ConfiguratorValidatorTest < Test::Unit::TestCase$/;" c
49
+ Configure ./examples/blinky/src/Configure.c /^void Configure(void)$/;" f
50
+ ConfigureInterruptSourceModeRegister ./examples/temp_sensor/src/TimerInterruptConfigurator.c /^static inline void ConfigureInterruptSourceModeRegister(void)$/;" f file:
51
+ ConvertAdcCountsToPicovolts ./examples/temp_sensor/src/AdcTemperatureSensor.c /^static inline uint32 ConvertAdcCountsToPicovolts(uint32 counts)$/;" f file:
52
+ ConvertPicovoltsToMillivolts ./examples/temp_sensor/src/AdcTemperatureSensor.c /^static inline uint16 ConvertPicovoltsToMillivolts(uint32 picovolts)$/;" f file:
53
+ DeepMergeFixTest ./test_graveyard/unit/busted/deep_merge_fix_test.rb /^class DeepMergeFixTest < Test::Unit::TestCase$/;" c
54
+ Dependinator ./lib/dependinator.rb /^class Dependinator$/;" c
55
+ DependinatorTest ./test_graveyard/unit/busted/dependinator_test.rb /^class DependinatorTest < Test::Unit::TestCase$/;" c
56
+ EnableCompareInterruptForRegisterC ./examples/temp_sensor/src/TimerInterruptConfigurator.c /^static inline void EnableCompareInterruptForRegisterC(void)$/;" f file:
57
+ ErbWrapper ./lib/erb_wrapper.rb /^class ErbWrapper$/;" c
58
+ Executor_Init ./examples/temp_sensor/src/Executor.c /^void Executor_Init(void)$/;" f
59
+ Executor_Run ./examples/temp_sensor/src/Executor.c /^bool Executor_Run(void)$/;" f
60
+ FileFinder ./lib/file_finder.rb /^class FileFinder$/;" c
61
+ FileFinderHelper ./lib/file_finder_helper.rb /^class FileFinderHelper$/;" c
62
+ FileFinderHelperTest ./test_graveyard/unit/busted/file_finder_helper_test.rb /^class FileFinderHelperTest < Test::Unit::TestCase$/;" c
63
+ FileFinderTest ./test_graveyard/unit/busted/file_finder_test.rb /^class FileFinderTest < Test::Unit::TestCase$/;" c
64
+ FilePathUtils ./lib/file_path_utils.rb /^class FilePathUtils$/;" c
65
+ FilePathUtilsTest ./test_graveyard/unit/busted/file_path_utils_test.rb /^class FilePathUtilsTest < Test::Unit::TestCase$/;" c
66
+ FileSystemUtils ./lib/file_system_utils.rb /^class FileSystemUtils$/;" c
67
+ FileSystemUtilsTest ./test_graveyard/unit/busted/file_system_utils_test.rb /^class FileSystemUtilsTest < Test::Unit::TestCase$/;" c
68
+ FileSystemWrapper ./lib/file_system_wrapper.rb /^class FileSystemWrapper$/;" c
69
+ FileWrapper ./lib/file_wrapper.rb /^class FileWrapper$/;" c
70
+ Flaginator ./lib/flaginator.rb /^class Flaginator$/;" c
71
+ Gcov ./plugins/gcov/gcov.rb /^class Gcov < Plugin$/;" c
72
+ GemDirLayout ./spec/spec_system_helper.rb /^class GemDirLayout$/;" c
73
+ Generator ./lib/generator.rb /^class Generator$/;" c
74
+ GeneratorHelper ./lib/generator_helper.rb /^class GeneratorHelper$/;" c
75
+ GeneratorTest ./test_graveyard/unit/busted/generator_test.rb /^class GeneratorTest < Test::Unit::TestCase$/;" c
76
+ GeneratorTestResults ./lib/generator_test_results.rb /^class GeneratorTestResults$/;" c
77
+ GeneratorTestResultsSanityChecker ./lib/generator_test_results_sanity_checker.rb /^class GeneratorTestResultsSanityChecker$/;" c
78
+ GeneratorTestResultsTest ./test_graveyard/unit/busted/generator_test_results_test.rb /^class GeneratorTestResultsTest < Test::Unit::TestCase$/;" c
79
+ GeneratorTestRunner ./lib/generator_test_runner.rb /^class GeneratorTestRunner$/;" c
80
+ GeneratorTestRunnerTest ./test_graveyard/unit/busted/generator_test_runner_test.rb /^class GeneratorTestRunnerTest < Test::Unit::TestCase$/;" c
81
+ ISR ./examples/blinky/src/main.c /^ISR(TIMER0_OVF_vect)$/;" f
82
+ Interrupt_Disable ./examples/temp_sensor/src/IntrinsicsWrapper.c /^void Interrupt_Disable(void)$/;" f
83
+ Interrupt_Enable ./examples/temp_sensor/src/IntrinsicsWrapper.c /^void Interrupt_Enable(void)$/;" f
84
+ LOOP ./examples/blinky/src/BlinkTask.c /^ #define LOOP /;" d file:
85
+ LOOP ./examples/blinky/src/main.c /^ #define LOOP /;" d file:
86
+ Loginator ./lib/loginator.rb /^class Loginator$/;" c
87
+ MakefileLoader ./lib/makefile.rb /^ class MakefileLoader$/;" c class:Rake
88
+ MocksRuleTest ./test_graveyard/system/rule_mocks_test.rb /^class MocksRuleTest < Test::Unit::TestCase$/;" c
89
+ Model_Init ./examples/temp_sensor/src/Model.c /^void Model_Init(void)$/;" f
90
+ ModuleGenerator ./plugins/module_generator/lib/module_generator.rb /^class ModuleGenerator < Plugin$/;" c
91
+ NoDefault ./lib/target_loader.rb /^ class NoDefault < Exception; end$/;" c class:TargetLoader
92
+ NoDirectory ./lib/target_loader.rb /^ class NoDirectory < Exception; end$/;" c class:TargetLoader
93
+ NoSuchTarget ./lib/target_loader.rb /^ class NoSuchTarget < Exception; end$/;" c class:TargetLoader
94
+ NoTargets ./lib/target_loader.rb /^ class NoTargets < Exception; end$/;" c class:TargetLoader
95
+ Object ./lib/system_utils.rb /^class Object$/;" c
96
+ PathsTest ./test_graveyard/integration/paths_test.rb /^class PathsTest < Test::Unit::TestCase$/;" c
97
+ PathsTest ./test_graveyard/system/file_system_test.rb /^class PathsTest < Test::Unit::TestCase$/;" c
98
+ Plugin ./lib/plugin.rb /^class Plugin$/;" c
99
+ PluginBuilder ./lib/plugin_builder.rb /^class PluginBuilder$/;" c
100
+ PluginManager ./lib/plugin_manager.rb /^class PluginManager$/;" c
101
+ PluginManagerHelper ./lib/plugin_manager_helper.rb /^class PluginManagerHelper$/;" c
102
+ PluginReportinator ./lib/plugin_reportinator.rb /^class PluginReportinator$/;" c
103
+ PluginReportinatorHelper ./lib/plugin_reportinator_helper.rb /^class PluginReportinatorHelper$/;" c
104
+ Preprocessinator ./lib/preprocessinator.rb /^class Preprocessinator$/;" c
105
+ PreprocessinatorExtractor ./lib/preprocessinator_extractor.rb /^class PreprocessinatorExtractor$/;" c
106
+ PreprocessinatorExtractorTest ./test_graveyard/unit/preprocessinator_extractor_test.rb /^class PreprocessinatorExtractorTest < Test::Unit::TestCase$/;" c
107
+ PreprocessinatorFileHandler ./lib/preprocessinator_file_handler.rb /^class PreprocessinatorFileHandler$/;" c
108
+ PreprocessinatorFileHandlerTest ./test_graveyard/unit/busted/preprocessinator_file_handler_test.rb /^class PreprocessinatorFileHandlerTest < Test::Unit::TestCase$/;" c
109
+ PreprocessinatorHelper ./lib/preprocessinator_helper.rb /^class PreprocessinatorHelper$/;" c
110
+ PreprocessinatorHelperTest ./test_graveyard/unit/busted/preprocessinator_helper_test.rb /^class PreprocessinatorHelperTest < Test::Unit::TestCase$/;" c
111
+ PreprocessinatorIncludesHandler ./lib/preprocessinator_includes_handler.rb /^class PreprocessinatorIncludesHandler$/;" c
112
+ PreprocessinatorIncludesHandlerTest ./test_graveyard/unit/busted/preprocessinator_includes_handler_test.rb /^class PreprocessinatorIncludesHandlerTest < Test::Unit::TestCase$/;" c
113
+ PreprocessinatorTest ./test_graveyard/unit/busted/preprocessinator_test.rb /^class PreprocessinatorTest < Test::Unit::TestCase$/;" c
114
+ ProjectConfigManager ./lib/project_config_manager.rb /^class ProjectConfigManager$/;" c
115
+ ProjectFileLoader ./lib/project_file_loader.rb /^class ProjectFileLoader$/;" c
116
+ ProjectFileLoaderTest ./test_graveyard/unit/busted/project_file_loader_test.rb /^class ProjectFileLoaderTest < Test::Unit::TestCase$/;" c
117
+ ProjectSimpleTest ./test_graveyard/system/project_simple_test.rb /^class ProjectSimpleTest < Test::Unit::TestCase$/;" c
118
+ Rake ./lib/makefile.rb /^module Rake$/;" m
119
+ Rake ./lib/rake_wrapper.rb /^class Rake::Task$/;" c
120
+ RakeRulesAuxDependenciesTest ./test_graveyard/integration/rake_rules_aux_dependencies_test.rb /^class RakeRulesAuxDependenciesTest < Test::Unit::TestCase$/;" c
121
+ RakeRulesCmockTest ./test_graveyard/integration/rake_rules_cmock_test.rb /^class RakeRulesCmockTest < Test::Unit::TestCase$/;" c
122
+ RakeRulesPreprocessTest ./test_graveyard/integration/rake_rules_preprocess_test.rb /^class RakeRulesPreprocessTest < Test::Unit::TestCase$/;" c
123
+ RakeRulesTest ./test_graveyard/integration/rake_rules_test.rb /^class RakeRulesTest < Test::Unit::TestCase$/;" c
124
+ RakeTasksTest ./test_graveyard/integration/rake_tasks_test.rb /^class RakeTasksTest < Test::Unit::TestCase$/;" c
125
+ RakeUtils ./lib/rake_utils.rb /^class RakeUtils$/;" c
126
+ RakeWrapper ./lib/rake_wrapper.rb /^class RakeWrapper$/;" c
127
+ ReleaseInvoker ./lib/release_invoker.rb /^class ReleaseInvoker$/;" c
128
+ ReleaseInvokerHelper ./lib/release_invoker_helper.rb /^class ReleaseInvokerHelper$/;" c
129
+ Reportinator ./lib/reportinator.rb /^class Reportinator$/;" c
130
+ RequestReload ./lib/target_loader.rb /^ class RequestReload < Exception; end$/;" c class:TargetLoader
131
+ RunnersRuleTest ./test_graveyard/system/rule_runners_test.rb /^class RunnersRuleTest < Test::Unit::TestCase$/;" c
132
+ SetInterruptHandler ./examples/temp_sensor/src/TimerInterruptConfigurator.c /^static inline void SetInterruptHandler(void)$/;" f file:
133
+ Setupinator ./lib/setupinator.rb /^class Setupinator$/;" c
134
+ SetupinatorTest ./test_graveyard/unit/busted/setupinator_test.rb /^class SetupinatorTest < Test::Unit::TestCase$/;" c
135
+ ShellExecutionException ./lib/tool_executor.rb /^class ShellExecutionException < RuntimeError$/;" c
136
+ StdErrRedirect ./lib/constants.rb /^class StdErrRedirect$/;" c
137
+ StdoutIdeTestsReport ./plugins/stdout_ide_tests_report/lib/stdout_ide_tests_report.rb /^class StdoutIdeTestsReport < Plugin$/;" c
138
+ StdoutPrettyTestsReport ./plugins/stdout_pretty_tests_report/lib/stdout_pretty_tests_report.rb /^class StdoutPrettyTestsReport < Plugin$/;" c
139
+ StreamWrapper ./lib/stream_wrapper.rb /^class StreamWrapper$/;" c
140
+ Streaminator ./lib/streaminator.rb /^class Streaminator$/;" c
141
+ StreaminatorHelper ./lib/streaminator_helper.rb /^class StreaminatorHelper$/;" c
142
+ StreaminatorTest ./test_graveyard/unit/busted/streaminator_test.rb /^class StreaminatorTest < Test::Unit::TestCase$/;" c
143
+ String ./lib/plugin.rb /^class String$/;" c
144
+ String ./spec/spec_helper.rb /^class String$/;" c
145
+ String ./test_graveyard/test_helper.rb /^class String$/;" c
146
+ String ./test_graveyard/unit/busted/generator_test_runner_test.rb /^class String$/;" c
147
+ Symbol ./lib/configurator_setup.rb /^class Symbol$/;" c
148
+ SystemContext ./spec/spec_system_helper.rb /^class SystemContext$/;" c
149
+ SystemUtils ./lib/system_utils.rb /^class SystemUtils$/;" c
150
+ SystemWrapper ./lib/system_wrapper.rb /^class SystemWrapper$/;" c
151
+ TargetLoader ./lib/target_loader.rb /^module TargetLoader$/;" m
152
+ Task ./examples/temp_sensor/src/TaskScheduler.c /^} Task;$/;" t typeref:struct:_Task file:
153
+ TaskInvoker ./lib/task_invoker.rb /^class TaskInvoker$/;" c
154
+ TaskInvokerTest ./test_graveyard/unit/busted/task_invoker_test.rb /^class TaskInvokerTest < Test::Unit::TestCase$/;" c
155
+ TaskSchedulerInstance ./examples/temp_sensor/src/TaskScheduler.c /^} TaskSchedulerInstance;$/;" t typeref:struct:_TaskSchedulerInstance file:
156
+ TaskScheduler_DoAdc ./examples/temp_sensor/src/TaskScheduler.c /^bool TaskScheduler_DoAdc(void)$/;" f
157
+ TaskScheduler_DoUsart ./examples/temp_sensor/src/TaskScheduler.c /^bool TaskScheduler_DoUsart(void)$/;" f
158
+ TaskScheduler_Init ./examples/temp_sensor/src/TaskScheduler.c /^void TaskScheduler_Init(void)$/;" f
159
+ TaskScheduler_Update ./examples/temp_sensor/src/TaskScheduler.c /^void TaskScheduler_Update(uint32 time)$/;" f
160
+ TemperatureCalculator_Calculate ./examples/temp_sensor/src/TemperatureCalculator.c /^float TemperatureCalculator_Calculate(uint16 millivolts)$/;" f
161
+ TemperatureFilter_GetTemperatureInCelcius ./examples/temp_sensor/src/TemperatureFilter.c /^float TemperatureFilter_GetTemperatureInCelcius(void)$/;" f
162
+ TemperatureFilter_Init ./examples/temp_sensor/src/TemperatureFilter.c /^void TemperatureFilter_Init(void)$/;" f
163
+ TemperatureFilter_ProcessInput ./examples/temp_sensor/src/TemperatureFilter.c /^void TemperatureFilter_ProcessInput(float temperature)$/;" f
164
+ Test ./test_graveyard/integration_test_helper.rb /^class Test::Unit::TestCase$/;" c
165
+ Test ./test_graveyard/system_test_helper.rb /^class Test::Unit::TestCase$/;" c
166
+ Test ./test_graveyard/unit_test_helper.rb /^class Test::Unit::TestCase$/;" c
167
+ TestIncludesExtractor ./lib/test_includes_extractor.rb /^class TestIncludesExtractor$/;" c
168
+ TestIncludesExtractorTest ./test_graveyard/unit/busted/test_includes_extractor_test.rb /^class TestIncludesExtractorTest < Test::Unit::TestCase$/;" c
169
+ TestInvoker ./lib/test_invoker.rb /^class TestInvoker$/;" c
170
+ TestInvokerHelper ./lib/test_invoker_helper.rb /^class TestInvokerHelper$/;" c
171
+ TestInvokerHelperTest ./test_graveyard/unit/busted/test_invoker_helper_test.rb /^class TestInvokerHelperTest < Test::Unit::TestCase$/;" c
172
+ TestInvokerTest ./test_graveyard/unit/busted/test_invoker_test.rb /^class TestInvokerTest < Test::Unit::TestCase$/;" c
173
+ TestResultsSanityChecks ./lib/constants.rb /^class TestResultsSanityChecks$/;" c
174
+ TestTasksTest ./test_graveyard/system/project_mocks_test.rb /^class TestTasksTest < Test::Unit::TestCase$/;" c
175
+ TimerConductor_Init ./examples/temp_sensor/src/TimerConductor.c /^void TimerConductor_Init(void)$/;" f
176
+ TimerConductor_Run ./examples/temp_sensor/src/TimerConductor.c /^void TimerConductor_Run(void)$/;" f
177
+ TimerHardware_Init ./examples/temp_sensor/src/TimerHardware.c /^void TimerHardware_Init(void)$/;" f
178
+ TimerModel_UpdateTime ./examples/temp_sensor/src/TimerModel.c /^void TimerModel_UpdateTime(uint32 systemTime)$/;" f
179
+ Timer_ConfigureInterrupt ./examples/temp_sensor/src/TimerInterruptConfigurator.c /^void Timer_ConfigureInterrupt(void)$/;" f
180
+ Timer_ConfigureInterruptHandler ./examples/temp_sensor/src/TimerConfigurator.c /^void Timer_ConfigureInterruptHandler(void)$/;" f
181
+ Timer_ConfigureMode ./examples/temp_sensor/src/TimerConfigurator.c /^void Timer_ConfigureMode(void)$/;" f
182
+ Timer_ConfigurePeriod ./examples/temp_sensor/src/TimerConfigurator.c /^void Timer_ConfigurePeriod(void)$/;" f
183
+ Timer_DisableInterrupt ./examples/temp_sensor/src/TimerInterruptConfigurator.c /^void Timer_DisableInterrupt(void)$/;" f
184
+ Timer_Enable ./examples/temp_sensor/src/TimerConfigurator.c /^void Timer_Enable(void)$/;" f
185
+ Timer_EnableInterrupt ./examples/temp_sensor/src/TimerInterruptConfigurator.c /^void Timer_EnableInterrupt(void)$/;" f
186
+ Timer_EnableOutputPin ./examples/temp_sensor/src/TimerConfigurator.c /^void Timer_EnableOutputPin(void)$/;" f
187
+ Timer_EnablePeripheralClocks ./examples/temp_sensor/src/TimerConfigurator.c /^void Timer_EnablePeripheralClocks(void)$/;" f
188
+ Timer_GetSystemTime ./examples/temp_sensor/src/TimerInterruptHandler.c /^uint32 Timer_GetSystemTime(void)$/;" f
189
+ Timer_InterruptHandler ./examples/temp_sensor/src/TimerInterruptHandler.c /^void Timer_InterruptHandler(void)$/;" f
190
+ Timer_Reset ./examples/temp_sensor/src/TimerConfigurator.c /^void Timer_Reset(void)$/;" f
191
+ Timer_ResetSystemTime ./examples/temp_sensor/src/TimerInterruptConfigurator.c /^void Timer_ResetSystemTime(void)$/;" f
192
+ Timer_SetSystemTime ./examples/temp_sensor/src/TimerInterruptHandler.c /^void Timer_SetSystemTime(uint32 time)$/;" f
193
+ Timer_Start ./examples/temp_sensor/src/TimerConfigurator.c /^void Timer_Start(void)$/;" f
194
+ ToolExecutor ./lib/tool_executor.rb /^class ToolExecutor$/;" c
195
+ ToolExecutorHelper ./lib/tool_executor_helper.rb /^class ToolExecutorHelper$/;" c
196
+ ToolExecutorHelperTest ./test_graveyard/unit/busted/tool_executor_helper_test.rb /^class ToolExecutorHelperTest < Test::Unit::TestCase$/;" c
197
+ ToolExecutorTest ./test_graveyard/unit/busted/tool_executor_test.rb /^class ToolExecutorTest < Test::Unit::TestCase$/;" c
198
+ UsartConductor_Init ./examples/temp_sensor/src/UsartConductor.c /^void UsartConductor_Init(void)$/;" f
199
+ UsartConductor_Run ./examples/temp_sensor/src/UsartConductor.c /^void UsartConductor_Run(void)$/;" f
200
+ UsartHardware_Init ./examples/temp_sensor/src/UsartHardware.c /^void UsartHardware_Init(uint8 baudRateRegisterSetting)$/;" f
201
+ UsartHardware_TransmitString ./examples/temp_sensor/src/UsartHardware.c /^void UsartHardware_TransmitString(char* data)$/;" f
202
+ UsartModel_CalculateBaudRateRegisterSetting ./examples/temp_sensor/src/UsartBaudRateRegisterCalculator.c /^uint8 UsartModel_CalculateBaudRateRegisterSetting(uint32 masterClock, uint32 baudRate)$/;" f
203
+ UsartModel_GetBaudRateRegisterSetting ./examples/temp_sensor/src/UsartModel.c /^uint8 UsartModel_GetBaudRateRegisterSetting(void)$/;" f
204
+ UsartModel_GetFormattedTemperature ./examples/temp_sensor/src/UsartModel.c /^char* UsartModel_GetFormattedTemperature(void)$/;" f
205
+ UsartModel_GetWakeupMessage ./examples/temp_sensor/src/UsartModel.c /^char* UsartModel_GetWakeupMessage(void)$/;" f
206
+ Usart_ConfigureMode ./examples/temp_sensor/src/UsartConfigurator.c /^void Usart_ConfigureMode(void)$/;" f
207
+ Usart_ConfigureUsartIO ./examples/temp_sensor/src/UsartConfigurator.c /^void Usart_ConfigureUsartIO(void)$/;" f
208
+ Usart_Enable ./examples/temp_sensor/src/UsartConfigurator.c /^void Usart_Enable(void)$/;" f
209
+ Usart_EnablePeripheralClock ./examples/temp_sensor/src/UsartConfigurator.c /^void Usart_EnablePeripheralClock(void)$/;" f
210
+ Usart_PutChar ./examples/temp_sensor/src/UsartPutChar.c /^void Usart_PutChar(char data)$/;" f
211
+ Usart_ReadyToTransmit ./examples/temp_sensor/src/UsartTransmitBufferStatus.c /^bool Usart_ReadyToTransmit(void)$/;" f
212
+ Usart_Reset ./examples/temp_sensor/src/UsartConfigurator.c /^void Usart_Reset(void)$/;" f
213
+ Usart_SetBaudRateRegister ./examples/temp_sensor/src/UsartConfigurator.c /^void Usart_SetBaudRateRegister(uint8 baudRateRegisterSetting)$/;" f
214
+ Verbosinator ./lib/verbosinator.rb /^class Verbosinator$/;" c
215
+ VerbosinatorTest ./test_graveyard/unit/busted/verbosinator_test.rb /^class VerbosinatorTest < Test::Unit::TestCase$/;" c
216
+ Verbosity ./lib/constants.rb /^class Verbosity$/;" c
217
+ VerificationFailed ./spec/spec_system_helper.rb /^ class VerificationFailed < Exception; end$/;" c class:SystemContext
218
+ Version ./lib/ceedling/version.rb /^ module Version$/;" m class:Ceedling
219
+ WarningsReport ./plugins/warnings_report/warnings_report.rb /^class WarningsReport < Plugin$/;" c
220
+ XmlTestsReport ./plugins/xml_tests_report/xml_tests_report.rb /^class XmlTestsReport < Plugin$/;" c
221
+ YamlWrapper ./lib/yaml_wrapper.rb /^class YamlWrapper$/;" c
222
+ [] ./lib/rake_wrapper.rb /^ def [](task)$/;" f class:RakeWrapper
223
+ _Task ./examples/temp_sensor/src/TaskScheduler.c /^typedef struct _Task$/;" s file:
224
+ _TaskSchedulerInstance ./examples/temp_sensor/src/TaskScheduler.c /^typedef struct _TaskSchedulerInstance$/;" s file:
225
+ a_function ./test_graveyard/system/mocks/source/a_file.c /^int a_function(int a, int b, int c)$/;" f
226
+ adc ./examples/temp_sensor/src/TaskScheduler.c /^ Task adc;$/;" m struct:_TaskSchedulerInstance file:
227
+ add ./test_graveyard/system/simple/source/other_stuff.c /^int add(int a, int b)$/;" f
228
+ add_load_path ./lib/system_wrapper.rb /^ def add_load_path(path)$/;" f class:SystemWrapper
229
+ add_load_paths ./lib/configurator_plugins.rb /^ def add_load_paths(config)$/;" f class:ConfiguratorPlugins
230
+ add_numbers ./assets/example_file.c /^int add_numbers(int a, int b) {$/;" f
231
+ add_path ./lib/file_path_utils.rb /^ def self.add_path?(path)$/;" F class:FilePathUtils
232
+ add_release_task_regex ./lib/task_invoker.rb /^ def add_release_task_regex(regex)$/;" f class:TaskInvoker
233
+ add_test_task_regex ./lib/task_invoker.rb /^ def add_test_task_regex(regex)$/;" f class:TaskInvoker
234
+ artifactinate ./lib/release_invoker.rb /^ def artifactinate( *files )$/;" f class:ReleaseInvoker
235
+ assemble_mocks_list ./lib/preprocessinator_helper.rb /^ def assemble_mocks_list(test)$/;" f class:PreprocessinatorHelper
236
+ assemble_test_results ./lib/plugin_reportinator.rb /^ def assemble_test_results(results_list, options={:boom => false})$/;" f class:PluginReportinator
237
+ assets/example_file.h assets/example_file.h //;" f
238
+ assets/project_as_gem.yml assets/project_as_gem.yml //;" f
239
+ assets/project_with_guts.yml assets/project_with_guts.yml //;" f
240
+ assets/rakefile_as_gem.rb assets/rakefile_as_gem.rb //;" f
241
+ assets/rakefile_with_guts.rb assets/rakefile_with_guts.rb //;" f
242
+ background_exec_cmdline_append ./lib/tool_executor_helper.rb /^ def background_exec_cmdline_append(tool_config)$/;" f class:ToolExecutorHelper
243
+ background_exec_cmdline_prepend ./lib/tool_executor_helper.rb /^ def background_exec_cmdline_prepend(tool_config)$/;" f class:ToolExecutorHelper
244
+ backup_env ./spec/spec_system_helper.rb /^ def backup_env$/;" f
245
+ basename ./lib/file_wrapper.rb /^ def basename(path, extension=nil)$/;" f class:FileWrapper
246
+ bin ./spec/spec_system_helper.rb /^ def bin; File.join(@d, 'bin') end$/;" f class:GemDirLayout
247
+ blow_up ./lib/file_finder_helper.rb /^ def blow_up(file_name, extra_message="")$/;" f class:FileFinderHelper
248
+ build ./lib/configurator.rb /^ def build(config, *keys)$/;" f class:Configurator
249
+ build_accessor_methods ./lib/configurator_builder.rb /^ def build_accessor_methods(config, context)$/;" f class:ConfiguratorBuilder
250
+ build_arguments ./lib/tool_executor.rb /^ def build_arguments(config, *args)$/;" f class:ToolExecutor
251
+ build_command_line ./lib/tool_executor.rb /^ def build_command_line(tool_config, *args)$/;" f class:ToolExecutor
252
+ build_constants_and_accessors ./lib/configurator_setup.rb /^ def build_constants_and_accessors(config, context)$/;" f class:ConfiguratorSetup
253
+ build_global_constants ./lib/configurator_builder.rb /^ def build_global_constants(config)$/;" f class:ConfiguratorBuilder
254
+ build_object ./lib/plugin_builder.rb /^ def build_object(new_object)$/;" f class:PluginBuilder
255
+ build_project_config ./lib/configurator_setup.rb /^ def build_project_config(config, flattened_config)$/;" f class:ConfiguratorSetup
256
+ build_supplement ./lib/configurator.rb /^ def build_supplement(config_base, config_more)$/;" f class:Configurator
257
+ builtin_ceedling_plugins_path ./lib/ceedling.rb /^def builtin_ceedling_plugins_path$/;" f
258
+ cache_release_config ./lib/cacheinator.rb /^ def cache_release_config(hash)$/;" f class:Cacheinator
259
+ cache_test_config ./lib/cacheinator.rb /^ def cache_test_config(hash)$/;" f class:Cacheinator
260
+ camelize ./lib/plugin_builder.rb /^ def camelize(underscored_name)$/;" f class:PluginBuilder
261
+ camelize ./lib/plugin_manager.rb /^ def camelize(underscored_name)$/;" f class:PluginManager
262
+ can_create_projects ./spec/spec_system_helper.rb /^ def can_create_projects$/;" f class:CeedlingTestCases
263
+ can_test_projects ./spec/spec_system_helper.rb /^ def can_test_projects$/;" f class:CeedlingTestCases
264
+ can_use_the_module_plugin ./spec/spec_system_helper.rb /^ def can_use_the_module_plugin$/;" f class:CeedlingTestCases
265
+ cd ./lib/file_system_wrapper.rb /^ def cd(path)$/;" f class:FileSystemWrapper
266
+ ceedling_dir ./lib/ceedling.rb /^def ceedling_dir$/;" f
267
+ ceedling_execute ./test_graveyard/system_test_helper.rb /^ def ceedling_execute(*args_and_tasks)$/;" f class:Test
268
+ ceedling_execute_dry_run ./test_graveyard/system_test_helper.rb /^ def ceedling_execute_dry_run(*args_and_tasks)$/;" f class:Test
269
+ ceedling_execute_no_boom ./test_graveyard/system_test_helper.rb /^ def ceedling_execute_no_boom(*args_and_tasks)$/;" f class:Test
270
+ ceedling_form_filepath ./lib/file_path_utils.rb /^def ceedling_form_filepath(destination_path, original_filepath, new_extension=nil)$/;" f
271
+ clean ./lib/configurator_builder.rb /^ def clean(in_hash)$/;" f class:ConfiguratorBuilder
272
+ clean_results ./lib/test_invoker_helper.rb /^ def clean_results(results, options)$/;" f class:TestInvokerHelper
273
+ cmdline_args ./lib/system_wrapper.rb /^ def cmdline_args$/;" f class:SystemWrapper
274
+ collect_all_existing_compilation_input ./lib/configurator_builder.rb /^ def collect_all_existing_compilation_input(in_hash)$/;" f class:ConfiguratorBuilder
275
+ collect_assembly ./lib/configurator_builder.rb /^ def collect_assembly(in_hash)$/;" f class:ConfiguratorBuilder
276
+ collect_headers ./lib/configurator_builder.rb /^ def collect_headers(in_hash)$/;" f class:ConfiguratorBuilder
277
+ collect_path_list ./lib/configurator.rb /^ def collect_path_list( container )$/;" f class:Configurator
278
+ collect_paths ./lib/file_system_utils.rb /^ def collect_paths(*paths)$/;" f class:FileSystemUtils
279
+ collect_project_options ./lib/configurator_builder.rb /^ def collect_project_options(in_hash)$/;" f class:ConfiguratorBuilder
280
+ collect_release_and_vendor_defines ./lib/configurator_builder.rb /^ def collect_release_and_vendor_defines(in_hash)$/;" f class:ConfiguratorBuilder
281
+ collect_release_artifact_extra_link_objects ./lib/configurator_builder.rb /^ def collect_release_artifact_extra_link_objects(in_hash)$/;" f class:ConfiguratorBuilder
282
+ collect_source ./lib/configurator_builder.rb /^ def collect_source(in_hash)$/;" f class:ConfiguratorBuilder
283
+ collect_source_and_include_paths ./lib/configurator_builder.rb /^ def collect_source_and_include_paths(in_hash)$/;" f class:ConfiguratorBuilder
284
+ collect_source_include_vendor_paths ./lib/configurator_builder.rb /^ def collect_source_include_vendor_paths(in_hash)$/;" f class:ConfiguratorBuilder
285
+ collect_test_and_vendor_defines ./lib/configurator_builder.rb /^ def collect_test_and_vendor_defines(in_hash)$/;" f class:ConfiguratorBuilder
286
+ collect_test_fixture_extra_link_objects ./lib/configurator_builder.rb /^ def collect_test_fixture_extra_link_objects(in_hash)$/;" f class:ConfiguratorBuilder
287
+ collect_test_support_source_include_paths ./lib/configurator_builder.rb /^ def collect_test_support_source_include_paths(in_hash)$/;" f class:ConfiguratorBuilder
288
+ collect_test_support_source_include_vendor_paths ./lib/configurator_builder.rb /^ def collect_test_support_source_include_vendor_paths(in_hash)$/;" f class:ConfiguratorBuilder
289
+ collect_tests ./lib/configurator_builder.rb /^ def collect_tests(in_hash)$/;" f class:ConfiguratorBuilder
290
+ collect_vendor_paths ./lib/configurator_builder.rb /^ def collect_vendor_paths(in_hash)$/;" f class:ConfiguratorBuilder
291
+ compare ./lib/file_wrapper.rb /^ def compare(from, to)$/;" f class:FileWrapper
292
+ config ./plugins/bullseye/lib/bullseye.rb /^ def config$/;" f class:Bullseye
293
+ config/test_environment.rb config/test_environment.rb //;" f
294
+ constants_include? ./lib/system_wrapper.rb /^ def constants_include?(item)$/;" f class:SystemWrapper
295
+ constrain_env ./spec/spec_system_helper.rb /^ def constrain_env$/;" f
296
+ construct_object ./lib/plugin_builder.rb /^ def construct_object(obj)$/;" f class:PluginBuilder
297
+ construct_plugin ./lib/plugin_builder.rb /^ def construct_plugin(plugin_name, object_map_yaml, system_objects)$/;" f class:PluginBuilder
298
+ contains_a_vendor_directory ./spec/spec_system_helper.rb /^ def contains_a_vendor_directory$/;" f class:CeedlingTestCases
299
+ contains_documentation ./spec/spec_system_helper.rb /^ def contains_documentation$/;" f class:CeedlingTestCases
300
+ context_exec ./spec/spec_system_helper.rb /^ def context_exec(cmd, *args)$/;" f
301
+ cp ./lib/file_wrapper.rb /^ def cp(source, destination, options={})$/;" f class:FileWrapper
302
+ create ./plugins/module_generator/lib/module_generator.rb /^ def create(path, optz={})$/;" f class:ModuleGenerator.setup
303
+ create_file_task ./lib/rake_wrapper.rb /^ def create_file_task(file_task, dependencies)$/;" f class:RakeWrapper
304
+ deep_clone ./lib/system_utils.rb /^ def deep_clone$/;" f class:Object
305
+ dehashify_argument_elements ./lib/tool_executor.rb /^ def dehashify_argument_elements(hash)$/;" f class:ToolExecutor
306
+ deploy_gem ./spec/spec_system_helper.rb /^ def deploy_gem$/;" f class:SystemContext
307
+ destroy_env ./spec/spec_system_helper.rb /^ def destroy_env(keep_keys=[])$/;" f
308
+ diff_cached_config? ./lib/cacheinator_helper.rb /^ def diff_cached_config?(cached_filepath, hash)$/;" f class:CacheinatorHelper
309
+ diff_cached_release_config? ./lib/cacheinator.rb /^ def diff_cached_release_config?(hash)$/;" f class:Cacheinator
310
+ diff_cached_test_config? ./lib/cacheinator.rb /^ def diff_cached_test_config?(hash)$/;" f class:Cacheinator
311
+ diff_cached_test_file ./lib/cacheinator.rb /^ def diff_cached_test_file( filepath )$/;" f class:Cacheinator
312
+ directory? ./lib/file_wrapper.rb /^ def directory?(path)$/;" f class:FileWrapper
313
+ directory_listing ./lib/file_wrapper.rb /^ def directory_listing(glob)$/;" f class:FileWrapper
314
+ dirname ./lib/file_wrapper.rb /^ def dirname(path)$/;" f class:FileWrapper
315
+ doIt ./examples/temp_sensor/src/TaskScheduler.c /^ bool doIt;$/;" m struct:_Task file:
316
+ do_setup ./lib/setupinator.rb /^ def do_setup(config_hash)$/;" f class:Setupinator
317
+ does_not_contain_a_vendor_directory ./spec/spec_system_helper.rb /^ def does_not_contain_a_vendor_directory$/;" f class:CeedlingTestCases
318
+ does_not_contain_documentation ./spec/spec_system_helper.rb /^ def does_not_contain_documentation$/;" f class:CeedlingTestCases
319
+ done! ./spec/spec_system_helper.rb /^ def done!$/;" f class:SystemContext
320
+ dump ./lib/yaml_wrapper.rb /^ def dump(filepath, structure)$/;" f class:YamlWrapper
321
+ enhance_dependencies_dependencies ./lib/dependinator.rb /^ def enhance_dependencies_dependencies(dependencies)$/;" f class:Dependinator
322
+ enhance_mock_dependencies ./lib/dependinator.rb /^ def enhance_mock_dependencies(mocks_list)$/;" f class:Dependinator
323
+ enhance_preprocesed_file_dependencies ./lib/dependinator.rb /^ def enhance_preprocesed_file_dependencies(files)$/;" f class:Dependinator
324
+ enhance_release_file_dependencies ./lib/dependinator.rb /^ def enhance_release_file_dependencies(files)$/;" f class:Dependinator
325
+ enhance_results_dependencies ./lib/dependinator.rb /^ def enhance_results_dependencies(result_filepath)$/;" f class:Dependinator
326
+ enhance_runner_dependencies ./lib/dependinator.rb /^ def enhance_runner_dependencies(runner_filepath)$/;" f class:Dependinator
327
+ enhance_shallow_include_lists_dependencies ./lib/dependinator.rb /^ def enhance_shallow_include_lists_dependencies(include_lists)$/;" f class:Dependinator
328
+ enhance_test_build_object_dependencies ./lib/dependinator.rb /^ def enhance_test_build_object_dependencies(objects)$/;" f class:Dependinator
329
+ env_get ./lib/system_wrapper.rb /^ def env_get(name)$/;" f class:SystemWrapper
330
+ env_set ./lib/system_wrapper.rb /^ def env_set(name, value)$/;" f class:SystemWrapper
331
+ eval ./lib/system_wrapper.rb /^ def eval(string)$/;" f class:SystemWrapper
332
+ eval_environment_variables ./lib/configurator.rb /^ def eval_environment_variables(config)$/;" f class:Configurator
333
+ eval_path_list ./lib/configurator.rb /^ def eval_path_list( paths )$/;" f class:Configurator
334
+ eval_paths ./lib/configurator.rb /^ def eval_paths(config)$/;" f class:Configurator
335
+ examples/blinky/project.yml examples/blinky/project.yml //;" f
336
+ examples/blinky/rakefile.rb examples/blinky/rakefile.rb //;" f
337
+ examples/blinky/src/BlinkTask.h examples/blinky/src/BlinkTask.h //;" f
338
+ examples/blinky/src/Configure.h examples/blinky/src/Configure.h //;" f
339
+ examples/blinky/src/main.h examples/blinky/src/main.h //;" f
340
+ examples/blinky/test/support/stub_interrupt.h examples/blinky/test/support/stub_interrupt.h //;" f
341
+ examples/blinky/test/support/stub_io.h examples/blinky/test/support/stub_io.h //;" f
342
+ examples/blinky/test/support/stub_iom328p.h examples/blinky/test/support/stub_iom328p.h //;" f
343
+ examples/blinky/test/support/stub_sfr_defs.h examples/blinky/test/support/stub_sfr_defs.h //;" f
344
+ examples/temp_sensor/project.yml examples/temp_sensor/project.yml //;" f
345
+ examples/temp_sensor/rakefile.rb examples/temp_sensor/rakefile.rb //;" f
346
+ examples/temp_sensor/src/AdcConductor.h examples/temp_sensor/src/AdcConductor.h //;" f
347
+ examples/temp_sensor/src/AdcHardware.h examples/temp_sensor/src/AdcHardware.h //;" f
348
+ examples/temp_sensor/src/AdcHardwareConfigurator.h examples/temp_sensor/src/AdcHardwareConfigurator.h //;" f
349
+ examples/temp_sensor/src/AdcModel.h examples/temp_sensor/src/AdcModel.h //;" f
350
+ examples/temp_sensor/src/AdcTemperatureSensor.h examples/temp_sensor/src/AdcTemperatureSensor.h //;" f
351
+ examples/temp_sensor/src/Executor.h examples/temp_sensor/src/Executor.h //;" f
352
+ examples/temp_sensor/src/IntrinsicsWrapper.h examples/temp_sensor/src/IntrinsicsWrapper.h //;" f
353
+ examples/temp_sensor/src/Main.h examples/temp_sensor/src/Main.h //;" f
354
+ examples/temp_sensor/src/Model.h examples/temp_sensor/src/Model.h //;" f
355
+ examples/temp_sensor/src/ModelConfig.h examples/temp_sensor/src/ModelConfig.h //;" f
356
+ examples/temp_sensor/src/TaskScheduler.h examples/temp_sensor/src/TaskScheduler.h //;" f
357
+ examples/temp_sensor/src/TemperatureCalculator.h examples/temp_sensor/src/TemperatureCalculator.h //;" f
358
+ examples/temp_sensor/src/TemperatureFilter.h examples/temp_sensor/src/TemperatureFilter.h //;" f
359
+ examples/temp_sensor/src/TimerConductor.h examples/temp_sensor/src/TimerConductor.h //;" f
360
+ examples/temp_sensor/src/TimerConfigurator.h examples/temp_sensor/src/TimerConfigurator.h //;" f
361
+ examples/temp_sensor/src/TimerHardware.h examples/temp_sensor/src/TimerHardware.h //;" f
362
+ examples/temp_sensor/src/TimerInterruptConfigurator.h examples/temp_sensor/src/TimerInterruptConfigurator.h //;" f
363
+ examples/temp_sensor/src/TimerInterruptHandler.h examples/temp_sensor/src/TimerInterruptHandler.h //;" f
364
+ examples/temp_sensor/src/TimerModel.h examples/temp_sensor/src/TimerModel.h //;" f
365
+ examples/temp_sensor/src/Types.h examples/temp_sensor/src/Types.h //;" f
366
+ examples/temp_sensor/src/UsartBaudRateRegisterCalculator.h examples/temp_sensor/src/UsartBaudRateRegisterCalculator.h //;" f
367
+ examples/temp_sensor/src/UsartConductor.h examples/temp_sensor/src/UsartConductor.h //;" f
368
+ examples/temp_sensor/src/UsartConfigurator.h examples/temp_sensor/src/UsartConfigurator.h //;" f
369
+ examples/temp_sensor/src/UsartHardware.h examples/temp_sensor/src/UsartHardware.h //;" f
370
+ examples/temp_sensor/src/UsartModel.h examples/temp_sensor/src/UsartModel.h //;" f
371
+ examples/temp_sensor/src/UsartPutChar.h examples/temp_sensor/src/UsartPutChar.h //;" f
372
+ examples/temp_sensor/src/UsartTransmitBufferStatus.h examples/temp_sensor/src/UsartTransmitBufferStatus.h //;" f
373
+ examples/temp_sensor/test/support/UnityHelper.c examples/temp_sensor/test/support/UnityHelper.c //;" f
374
+ examples/temp_sensor/test/support/UnityHelper.h examples/temp_sensor/test/support/UnityHelper.h //;" f
375
+ exec ./lib/tool_executor.rb /^ def exec(command, options={}, args=[])$/;" f class:ToolExecutor
376
+ execute ./test_graveyard/system_test_helper.rb /^ def execute(cmd, args=[], verbose_cmd=false, verbose_error=true, should_raise=true)$/;" f class:Test
377
+ execute_plugins ./lib/plugin_manager.rb /^ def execute_plugins(method, *args)$/;" f class:PluginManager
378
+ exist? ./lib/file_wrapper.rb /^ def exist?(filepath)$/;" f class:FileWrapper
379
+ exists? ./lib/configurator_validator.rb /^ def exists?(config, *keys)$/;" f class:ConfiguratorValidator
380
+ expand_all_path_globs ./lib/configurator_builder.rb /^ def expand_all_path_globs(in_hash)$/;" f class:ConfiguratorBuilder
381
+ expandify_element ./lib/tool_executor.rb /^ def expandify_element(element, *args)$/;" f class:ToolExecutor
382
+ extract_base_file_from_preprocessed_expansion ./lib/preprocessinator_extractor.rb /^ def extract_base_file_from_preprocessed_expansion(filepath)$/;" f class:PreprocessinatorExtractor
383
+ extract_context ./plugins/module_generator/lib/module_generator.rb /^ def extract_context(path, optz={})$/;" f class:ModuleGenerator.setup
384
+ extract_from_file ./lib/test_includes_extractor.rb /^ def extract_from_file(file)$/;" f class:TestIncludesExtractor
385
+ extract_line_elements ./lib/generator_test_results.rb /^ def extract_line_elements(line, filename)$/;" f class:GeneratorTestResults
386
+ extract_name ./lib/streaminator_helper.rb /^ def extract_name(stream)$/;" f class:StreaminatorHelper
387
+ extract_path ./lib/file_path_utils.rb /^ def self.extract_path(path)$/;" F class:FilePathUtils
388
+ extract_path_no_aggregation_operators ./lib/file_path_utils.rb /^ def self.extract_path_no_aggregation_operators(path)$/;" F class:FilePathUtils
389
+ extract_shallow_includes ./lib/preprocessinator_includes_handler.rb /^ def extract_shallow_includes(make_rule)$/;" f class:PreprocessinatorIncludesHandler
390
+ extract_sources ./lib/test_invoker_helper.rb /^ def extract_sources(test)$/;" f class:TestInvokerHelper
391
+ fetch_results ./lib/plugin_reportinator.rb /^ def fetch_results(results_path, test, options={:boom => false})$/;" f class:PluginReportinator
392
+ fetch_results ./lib/plugin_reportinator_helper.rb /^ def fetch_results(results_path, options)$/;" f class:PluginReportinatorHelper
393
+ fetch_test_results ./test_graveyard/system_test_helper.rb /^ def fetch_test_results(results_path, test_name)$/;" f class:Test
394
+ find_and_merge_plugins ./lib/configurator.rb /^ def find_and_merge_plugins(config)$/;" f class:Configurator
395
+ find_assembly_file ./lib/file_finder.rb /^ def find_assembly_file(file_path)$/;" f class:FileFinder
396
+ find_compilation_input_file ./lib/file_finder.rb /^ def find_compilation_input_file(file_path, complain=:error)$/;" f class:FileFinder
397
+ find_config_plugins ./lib/configurator_plugins.rb /^ def find_config_plugins(config)$/;" f class:ConfiguratorPlugins
398
+ find_file_in_collection ./lib/file_finder_helper.rb /^ def find_file_in_collection(file_name, file_list, complain, extra_message="")$/;" f class:FileFinderHelper
399
+ find_header_file ./lib/file_finder.rb /^ def find_header_file(mock_file)$/;" f class:FileFinder
400
+ find_header_input_for_mock_file ./lib/file_finder.rb /^ def find_header_input_for_mock_file(mock_file)$/;" f class:FileFinder
401
+ find_plugin_defaults ./lib/configurator_plugins.rb /^ def find_plugin_defaults(config)$/;" f class:ConfiguratorPlugins
402
+ find_project_files ./lib/project_file_loader.rb /^ def find_project_files$/;" f class:ProjectFileLoader
403
+ find_rake_plugins ./lib/configurator_plugins.rb /^ def find_rake_plugins(config)$/;" f class:ConfiguratorPlugins
404
+ find_script_plugins ./lib/configurator_plugins.rb /^ def find_script_plugins(config)$/;" f class:ConfiguratorPlugins
405
+ find_source_file ./lib/file_finder.rb /^ def find_source_file(file_path, complain)$/;" f class:FileFinder
406
+ find_source_from_test ./lib/file_finder.rb /^ def find_source_from_test(test, complain)$/;" f class:FileFinder
407
+ find_test_cases ./lib/generator_test_runner.rb /^ def find_test_cases(test_file)$/;" f class:GeneratorTestRunner
408
+ find_test_from_file_path ./lib/file_finder.rb /^ def find_test_from_file_path(file_path)$/;" f class:FileFinder
409
+ find_test_from_runner_path ./lib/file_finder.rb /^ def find_test_from_runner_path(runner_path)$/;" f class:FileFinder
410
+ find_test_input_for_runner_file ./lib/file_finder.rb /^ def find_test_input_for_runner_file(runner_path)$/;" f class:FileFinder
411
+ find_test_or_source_or_header_file ./lib/file_finder.rb /^ def find_test_or_source_or_header_file(file_path)$/;" f class:FileFinder
412
+ flag_down ./lib/flaginator.rb /^ def flag_down( operation, context, file )$/;" f class:Flaginator
413
+ flattenify ./lib/configurator_builder.rb /^ def flattenify(config)$/;" f class:ConfiguratorBuilder
414
+ form_ceedling_vendor_path ./lib/file_path_utils.rb /^ def self.form_ceedling_vendor_path(*filepaths)$/;" F class:FilePathUtils
415
+ form_fail_results_filepath ./lib/file_path_utils.rb /^ def form_fail_results_filepath(filepath)$/;" f class:FilePathUtils
416
+ form_file_key ./lib/test_includes_extractor.rb /^ def form_file_key(filepath)$/;" f class:TestIncludesExtractor
417
+ form_mocks_source_filelist ./lib/file_path_utils.rb /^ def form_mocks_source_filelist(mocks)$/;" f class:FilePathUtils
418
+ form_pass_results_filelist ./lib/file_path_utils.rb /^ def form_pass_results_filelist(path, files)$/;" f class:FilePathUtils
419
+ form_pass_results_filepath ./lib/file_path_utils.rb /^ def form_pass_results_filepath(filepath)$/;" f class:FilePathUtils
420
+ form_preprocessed_file_filepath ./lib/file_path_utils.rb /^ def form_preprocessed_file_filepath(filepath)$/;" f class:FilePathUtils
421
+ form_preprocessed_includes_list_filepath ./lib/file_path_utils.rb /^ def form_preprocessed_includes_list_filepath(filepath)$/;" f class:FilePathUtils
422
+ form_preprocessed_mockable_headers_filelist ./lib/file_path_utils.rb /^ def form_preprocessed_mockable_headers_filelist(mocks)$/;" f class:FilePathUtils
423
+ form_release_build_asm_object_filepath ./lib/file_path_utils.rb /^ def form_release_build_asm_object_filepath(filepath)$/;" f class:FilePathUtils
424
+ form_release_build_asm_objects_filelist ./lib/file_path_utils.rb /^ def form_release_build_asm_objects_filelist(files)$/;" f class:FilePathUtils
425
+ form_release_build_c_list_filepath ./lib/file_path_utils.rb /^ def form_release_build_c_list_filepath(filepath)$/;" f class:FilePathUtils
426
+ form_release_build_c_object_filepath ./lib/file_path_utils.rb /^ def form_release_build_c_object_filepath(filepath)$/;" f class:FilePathUtils
427
+ form_release_build_c_objects_filelist ./lib/file_path_utils.rb /^ def form_release_build_c_objects_filelist(files)$/;" f class:FilePathUtils
428
+ form_release_build_cache_path ./lib/file_path_utils.rb /^ def form_release_build_cache_path(filepath)$/;" f class:FilePathUtils
429
+ form_release_dependencies_filelist ./lib/file_path_utils.rb /^ def form_release_dependencies_filelist(files)$/;" f class:FilePathUtils
430
+ form_release_dependencies_filepath ./lib/file_path_utils.rb /^ def form_release_dependencies_filepath(filepath)$/;" f class:FilePathUtils
431
+ form_runner_filepath_from_test ./lib/file_path_utils.rb /^ def form_runner_filepath_from_test(filepath)$/;" f class:FilePathUtils
432
+ form_runner_object_filepath_from_test ./lib/file_path_utils.rb /^ def form_runner_object_filepath_from_test(filepath)$/;" f class:FilePathUtils
433
+ form_shallow_dependencies_rule ./lib/preprocessinator_includes_handler.rb /^ def form_shallow_dependencies_rule(filepath)$/;" f class:PreprocessinatorIncludesHandler
434
+ form_temp_path ./lib/file_path_utils.rb /^ def form_temp_path(filepath, prefix='')$/;" f class:FilePathUtils
435
+ form_test_build_cache_path ./lib/file_path_utils.rb /^ def form_test_build_cache_path(filepath)$/;" f class:FilePathUtils
436
+ form_test_build_list_filepath ./lib/file_path_utils.rb /^ def form_test_build_list_filepath(filepath)$/;" f class:FilePathUtils
437
+ form_test_build_map_filepath ./lib/file_path_utils.rb /^ def form_test_build_map_filepath(filepath)$/;" f class:FilePathUtils
438
+ form_test_build_object_filepath ./lib/file_path_utils.rb /^ def form_test_build_object_filepath(filepath)$/;" f class:FilePathUtils
439
+ form_test_build_objects_filelist ./lib/file_path_utils.rb /^ def form_test_build_objects_filelist(sources)$/;" f class:FilePathUtils
440
+ form_test_dependencies_filelist ./lib/file_path_utils.rb /^ def form_test_dependencies_filelist(files)$/;" f class:FilePathUtils
441
+ form_test_executable_filepath ./lib/file_path_utils.rb /^ def form_test_executable_filepath(filepath)$/;" f class:FilePathUtils
442
+ form_test_filepath_from_runner ./lib/file_path_utils.rb /^ def form_test_filepath_from_runner(filepath)$/;" f class:FilePathUtils
443
+ format_key_sequence ./lib/configurator_validator.rb /^ def format_key_sequence(keys, depth)$/;" f class:ConfiguratorValidator
444
+ formattedTemperature ./examples/temp_sensor/src/UsartModel.c /^char formattedTemperature[32];$/;" v
445
+ gather_and_store_includes ./lib/test_includes_extractor.rb /^ def gather_and_store_includes(file, includes)$/;" f
446
+ generate ./lib/generator_test_runner.rb /^ def generate(module_name, runner_filepath, test_cases, mock_list)$/;" f class:GeneratorTestRunner
447
+ generate_banner ./lib/plugin_reportinator.rb /^ def generate_banner(message)$/;" f class:PluginReportinator
448
+ generate_banner ./lib/reportinator.rb /^ def generate_banner(message, width=nil)$/;" f class:Reportinator
449
+ generate_coverage_object_file ./plugins/bullseye/lib/bullseye.rb /^ def generate_coverage_object_file(source, object)$/;" f class:Bullseye
450
+ generate_coverage_object_file ./plugins/gcov/gcov.rb /^ def generate_coverage_object_file(source, object)$/;" f class:Gcov
451
+ generate_dependencies_file ./lib/generator.rb /^ def generate_dependencies_file(tool, context, source, object, dependencies)$/;" f class:Generator
452
+ generate_executable_file ./lib/generator.rb /^ def generate_executable_file(tool, context, objects, executable, map='')$/;" f class:Generator
453
+ generate_file ./lib/erb_wrapper.rb /^ def generate_file(template, data, output_file)$/;" f class:ErbWrapper
454
+ generate_log_path ./plugins/warnings_report/warnings_report.rb /^ def generate_log_path( context )$/;" f class:WarningsReport
455
+ generate_mock ./lib/generator.rb /^ def generate_mock(context, header_filepath)$/;" f class:Generator
456
+ generate_object_file ./lib/generator.rb /^ def generate_object_file(tool, context, source, object, list='') $/;" f class:Generator
457
+ generate_preprocessed_file ./lib/generator.rb /^ def generate_preprocessed_file(context, file)$/;" f class:Generator
458
+ generate_shallow_includes_list ./lib/generator.rb /^ def generate_shallow_includes_list(context, file)$/;" f class:Generator
459
+ generate_test_results ./lib/generator.rb /^ def generate_test_results(tool, context, executable, result)$/;" f class:Generator
460
+ generate_test_runner ./lib/generator.rb /^ def generate_test_runner(context, test_filepath, runner_filepath)$/;" f class:Generator
461
+ get_expanded_path ./lib/file_wrapper.rb /^ def get_expanded_path(path)$/;" f class:FileWrapper
462
+ get_results_structure ./lib/generator_test_results.rb /^ def get_results_structure$/;" f class:GeneratorTestResults
463
+ get_results_structure ./lib/plugin_reportinator.rb /^ def get_results_structure$/;" f class:PluginReportinator
464
+ get_runner_config ./lib/configurator.rb /^ def get_runner_config$/;" f class:Configurator
465
+ get_vendor_paths ./lib/configurator_builder.rb /^ def get_vendor_paths(in_hash)$/;" f class:ConfiguratorBuilder
466
+ gripe ./lib/file_finder_helper.rb /^ def gripe(file_name, extra_message="")$/;" f class:FileFinderHelper
467
+ include? ./lib/plugin_manager_helper.rb /^ def include?(plugins, name)$/;" f class:PluginManagerHelper
468
+ initialize ./lib/plugin.rb /^ def initialize(system_objects, name)$/;" f class:Plugin
469
+ initialize ./lib/rake_wrapper.rb /^ def initialize$/;" f class:RakeWrapper
470
+ initialize ./lib/tool_executor.rb /^ def initialize(shell_result)$/;" f class:ShellExecutionException
471
+ initialize ./spec/spec_system_helper.rb /^ def initialize$/;" f class:SystemContext
472
+ initialize ./spec/spec_system_helper.rb /^ def initialize(install_dir)$/;" f class:GemDirLayout
473
+ initialized ./examples/temp_sensor/src/TemperatureFilter.c /^static bool initialized;$/;" v file:
474
+ insert_rake_plugins ./lib/configurator.rb /^ def insert_rake_plugins(plugins)$/;" f class:Configurator
475
+ inspect ./lib/target_loader.rb /^ def self.inspect(config, target_name=nil)$/;" F class:TargetLoader
476
+ install_dir ./spec/spec_system_helper.rb /^ def install_dir; @d end$/;" f class:GemDirLayout
477
+ instantiate_file_list ./lib/file_wrapper.rb /^ def instantiate_file_list(files=[])$/;" f class:FileWrapper
478
+ instantiate_plugin_script ./lib/plugin_manager_helper.rb /^ def instantiate_plugin_script(plugin, system_objects, name)$/;" f class:PluginManagerHelper
479
+ invoke_helper ./test_graveyard/unit/busted/task_invoker_test.rb /^ def invoke_helper(enhance=true)$/;" f class:TaskInvokerTest
480
+ invoke_release_dependencies_files ./lib/task_invoker.rb /^ def invoke_release_dependencies_files(files)$/;" f class:TaskInvoker
481
+ invoke_release_objects ./lib/task_invoker.rb /^ def invoke_release_objects(objects)$/;" f class:TaskInvoker
482
+ invoke_shallow_includes_list ./lib/preprocessinator_includes_handler.rb /^ def invoke_shallow_includes_list(filepath)$/;" f class:PreprocessinatorIncludesHandler
483
+ invoke_test_dependencies_files ./lib/task_invoker.rb /^ def invoke_test_dependencies_files(files)$/;" f class:TaskInvoker
484
+ invoke_test_mocks ./lib/task_invoker.rb /^ def invoke_test_mocks(mocks)$/;" f class:TaskInvoker
485
+ invoke_test_preprocessed_files ./lib/task_invoker.rb /^ def invoke_test_preprocessed_files(files)$/;" f class:TaskInvoker
486
+ invoke_test_results ./lib/task_invoker.rb /^ def invoke_test_results(result)$/;" f class:TaskInvoker
487
+ invoke_test_runner ./lib/task_invoker.rb /^ def invoke_test_runner(runner)$/;" f class:TaskInvoker
488
+ invoke_test_shallow_include_lists ./lib/task_invoker.rb /^ def invoke_test_shallow_include_lists(files)$/;" f class:TaskInvoker
489
+ invoked? ./lib/task_invoker.rb /^ def invoked?(regex)$/;" f class:TaskInvoker
490
+ left_margin ./lib/plugin.rb /^ def left_margin(margin=0)$/;" f class:String
491
+ left_margin ./spec/spec_helper.rb /^ def left_margin(indentation_level = 0)$/;" f class:String
492
+ left_margin ./test_graveyard/test_helper.rb /^ def left_margin(margin=0)$/;" f class:String
493
+ lib ./spec/spec_system_helper.rb /^ def lib; File.join(@d, 'lib') end$/;" f class:GemDirLayout
494
+ lib/ceedling/version.rb.erb lib/ceedling/version.rb.erb //;" f
495
+ lib/defaults.rb lib/defaults.rb //;" f
496
+ lib/objects.yml lib/objects.yml //;" f
497
+ lib/rakefile.rb lib/rakefile.rb //;" f
498
+ lib/rules_cmock.rake lib/rules_cmock.rake //;" f
499
+ lib/rules_preprocess.rake lib/rules_preprocess.rake //;" f
500
+ lib/rules_release.rake lib/rules_release.rake //;" f
501
+ lib/rules_release_deep_dependencies.rake lib/rules_release_deep_dependencies.rake //;" f
502
+ lib/rules_tests.rake lib/rules_tests.rake //;" f
503
+ lib/rules_tests_deep_dependencies.rake lib/rules_tests_deep_dependencies.rake //;" f
504
+ lib/tasks_base.rake lib/tasks_base.rake //;" f
505
+ lib/tasks_filesystem.rake lib/tasks_filesystem.rake //;" f
506
+ lib/tasks_release.rake lib/tasks_release.rake //;" f
507
+ lib/tasks_release_deep_dependencies.rake lib/tasks_release_deep_dependencies.rake //;" f
508
+ lib/tasks_tests.rake lib/tasks_tests.rake //;" f
509
+ lib/tasks_tests_deep_dependencies.rake lib/tasks_tests_deep_dependencies.rake //;" f
510
+ lib/tasks_vendor.rake lib/tasks_vendor.rake //;" f
511
+ load ./lib/makefile.rb /^ def load(fn)$/;" f class:Rake.MakefileLoader
512
+ load ./lib/yaml_wrapper.rb /^ def load(filepath)$/;" f class:YamlWrapper
513
+ load_dependencies ./lib/rake_wrapper.rb /^ def load_dependencies(dependencies_path)$/;" f class:RakeWrapper
514
+ load_plugin_scripts ./lib/plugin_manager.rb /^ def load_plugin_scripts(script_plugins, system_objects)$/;" f class:PluginManager
515
+ load_project_config ./lib/project_file_loader.rb /^ def load_project_config$/;" f class:ProjectFileLoader
516
+ load_project_files ./lib/setupinator.rb /^ def load_project_files$/;" f class:Setupinator
517
+ load_release_object_deep_dependencies ./lib/dependinator.rb /^ def load_release_object_deep_dependencies(dependencies_list)$/;" f class:Dependinator
518
+ load_test_object_deep_dependencies ./lib/dependinator.rb /^ def load_test_object_deep_dependencies(files_list)$/;" f class:Dependinator
519
+ log ./lib/loginator.rb /^ def log(string, heading=nil)$/;" f class:Loginator
520
+ logl ./examples/temp_sensor/src/TemperatureCalculator.c /^#define logl /;" d file:
521
+ lookup_includes_list ./lib/test_includes_extractor.rb /^ def lookup_includes_list(file)$/;" f class:TestIncludesExtractor
522
+ lookup_raw_mock_list ./lib/test_includes_extractor.rb /^ def lookup_raw_mock_list(test)$/;" f class:TestIncludesExtractor
523
+ main ./examples/blinky/src/main.c /^ int main(void) $/;" f
524
+ main ./examples/temp_sensor/src/Main.c /^int main(void)$/;" f
525
+ manufacture ./lib/cmock_builder.rb /^ def manufacture(cmock_config)$/;" f class:CmockBuilder
526
+ merge_options ./lib/project_config_manager.rb /^ def merge_options(config_hash, option_filepath)$/;" f class:ProjectConfigManager
527
+ module_eval ./lib/system_wrapper.rb /^ def module_eval(string)$/;" f class:SystemWrapper
528
+ newline_split ./test_graveyard/unit/busted/generator_test_runner_test.rb /^ def newline_split(pattern=\/\\n\/, limit=nil)$/;" f class:String
529
+ open ./lib/file_wrapper.rb /^ def open(filepath, flags)$/;" f class:FileWrapper
530
+ os_executable_ext ./lib/file_path_utils.rb /^ def self.os_executable_ext(executable)$/;" F class:FilePathUtils
531
+ osify_path_separators ./lib/tool_executor_helper.rb /^ def osify_path_separators(executable)$/;" f class:ToolExecutorHelper
532
+ par_map ./lib/par_map.rb /^def par_map(n, things, &block)$/;" f
533
+ parse_includes_list ./lib/test_includes_extractor.rb /^ def parse_includes_list(includes_list)$/;" f class:TestIncludesExtractor
534
+ parse_test_file ./lib/test_includes_extractor.rb /^ def parse_test_file(test)$/;" f class:TestIncludesExtractor
535
+ parse_test_helper ./test_graveyard/unit/busted/test_includes_extractor_test.rb /^ def parse_test_helper$/;" f class:TestIncludesExtractorTest
536
+ period ./examples/temp_sensor/src/TaskScheduler.c /^ uint32 period;$/;" m struct:_Task file:
537
+ plugins/bullseye/assets/template.erb plugins/bullseye/assets/template.erb //;" f
538
+ plugins/bullseye/bullseye.rake plugins/bullseye/bullseye.rake //;" f
539
+ plugins/bullseye/config/defaults.yml plugins/bullseye/config/defaults.yml //;" f
540
+ plugins/gcov/defaults.yml plugins/gcov/defaults.yml //;" f
541
+ plugins/gcov/gcov.rake plugins/gcov/gcov.rake //;" f
542
+ plugins/gcov/template.erb plugins/gcov/template.erb //;" f
543
+ plugins/module_generator/config/module_generator.yml plugins/module_generator/config/module_generator.yml //;" f
544
+ plugins/module_generator/module_generator.rake plugins/module_generator/module_generator.rake //;" f
545
+ plugins/stdout_ide_tests_report/config/stdout_ide_tests_report.yml plugins/stdout_ide_tests_report/config/stdout_ide_tests_report.yml //;" f
546
+ plugins/stdout_pretty_tests_report/assets/template.erb plugins/stdout_pretty_tests_report/assets/template.erb //;" f
547
+ plugins/stdout_pretty_tests_report/config/stdout_pretty_tests_report.yml plugins/stdout_pretty_tests_report/config/stdout_pretty_tests_report.yml //;" f
548
+ plugins_failed? ./lib/plugin_manager.rb /^ def plugins_failed?$/;" f class:PluginManager
549
+ populate_cmock_defaults ./lib/configurator.rb /^ def populate_cmock_defaults(config)$/;" f class:Configurator
550
+ populate_defaults ./lib/configurator.rb /^ def populate_defaults(config)$/;" f class:Configurator
551
+ populate_defaults ./lib/configurator_builder.rb /^ def populate_defaults(config, defaults)$/;" f class:ConfiguratorBuilder
552
+ post_build ./lib/plugin.rb /^ def post_build; end$/;" f class:Plugin
553
+ post_build ./lib/plugin_manager.rb /^ def post_build; execute_plugins(:post_build); end$/;" f class:PluginManager
554
+ post_build ./plugins/bullseye/lib/bullseye.rb /^ def post_build$/;" f class:Bullseye
555
+ post_build ./plugins/gcov/gcov.rb /^ def post_build$/;" f class:Gcov
556
+ post_build ./plugins/stdout_ide_tests_report/lib/stdout_ide_tests_report.rb /^ def post_build$/;" f class:StdoutIdeTestsReport
557
+ post_build ./plugins/stdout_pretty_tests_report/lib/stdout_pretty_tests_report.rb /^ def post_build$/;" f class:StdoutPrettyTestsReport
558
+ post_build ./plugins/xml_tests_report/xml_tests_report.rb /^ def post_build$/;" f class:XmlTestsReport
559
+ post_compile_execute ./lib/plugin.rb /^ def post_compile_execute(arg_hash); end$/;" f class:Plugin
560
+ post_compile_execute ./lib/plugin_manager.rb /^ def post_compile_execute(arg_hash); execute_plugins(:post_compile_execute, arg_hash); end$/;" f class:PluginManager
561
+ post_compile_execute ./plugins/warnings_report/warnings_report.rb /^ def post_compile_execute( arg_hash )$/;" f class:WarningsReport
562
+ post_link_execute ./lib/plugin.rb /^ def post_link_execute(arg_hash); end$/;" f class:Plugin
563
+ post_link_execute ./lib/plugin_manager.rb /^ def post_link_execute(arg_hash); execute_plugins(:post_link_execute, arg_hash); end$/;" f class:PluginManager
564
+ post_link_execute ./plugins/warnings_report/warnings_report.rb /^ def post_link_execute( arg_hash )$/;" f class:WarningsReport
565
+ post_mock_generate ./lib/plugin.rb /^ def post_mock_generate(arg_hash); end$/;" f class:Plugin
566
+ post_mock_generate ./lib/plugin_manager.rb /^ def post_mock_generate(arg_hash); execute_plugins(:post_mock_generate, arg_hash); end$/;" f class:PluginManager
567
+ post_release ./lib/plugin.rb /^ def post_release; end$/;" f class:Plugin
568
+ post_release ./lib/plugin_manager.rb /^ def post_release; execute_plugins(:post_release); end$/;" f class:PluginManager
569
+ post_runner_generate ./lib/plugin.rb /^ def post_runner_generate(arg_hash); end$/;" f class:Plugin
570
+ post_runner_generate ./lib/plugin_manager.rb /^ def post_runner_generate(arg_hash); execute_plugins(:post_runner_generate, arg_hash); end$/;" f class:PluginManager
571
+ post_test ./lib/plugin.rb /^ def post_test; end$/;" f class:Plugin
572
+ post_test ./lib/plugin_manager.rb /^ def post_test; execute_plugins(:post_test); end$/;" f class:PluginManager
573
+ post_test_fixture_execute ./lib/plugin.rb /^ def post_test_fixture_execute(arg_hash); end$/;" f class:Plugin
574
+ post_test_fixture_execute ./lib/plugin_manager.rb /^ def post_test_fixture_execute(arg_hash)$/;" f class:PluginManager
575
+ post_test_fixture_execute ./plugins/bullseye/lib/bullseye.rb /^ def post_test_fixture_execute(arg_hash)$/;" f class:Bullseye
576
+ post_test_fixture_execute ./plugins/gcov/gcov.rb /^ def post_test_fixture_execute(arg_hash)$/;" f class:Gcov
577
+ post_test_fixture_execute ./plugins/stdout_ide_tests_report/lib/stdout_ide_tests_report.rb /^ def post_test_fixture_execute(arg_hash)$/;" f class:StdoutIdeTestsReport
578
+ post_test_fixture_execute ./plugins/stdout_pretty_tests_report/lib/stdout_pretty_tests_report.rb /^ def post_test_fixture_execute(arg_hash)$/;" f class:StdoutPrettyTestsReport
579
+ post_test_fixture_execute ./plugins/xml_tests_report/xml_tests_report.rb /^ def post_test_fixture_execute(arg_hash)$/;" f class:XmlTestsReport
580
+ pre_build ./lib/plugin.rb /^ def pre_build; end$/;" f class:Plugin
581
+ pre_build ./lib/plugin_manager.rb /^ def pre_build; execute_plugins(:pre_build); end$/;" f class:PluginManager
582
+ pre_compile_execute ./lib/plugin.rb /^ def pre_compile_execute(arg_hash); end$/;" f class:Plugin
583
+ pre_compile_execute ./lib/plugin_manager.rb /^ def pre_compile_execute(arg_hash); execute_plugins(:pre_compile_execute, arg_hash); end$/;" f class:PluginManager
584
+ pre_compile_execute ./plugins/warnings_report/warnings_report.rb /^ def pre_compile_execute( arg_hash )$/;" f class:WarningsReport
585
+ pre_link_execute ./lib/plugin.rb /^ def pre_link_execute(arg_hash); end$/;" f class:Plugin
586
+ pre_link_execute ./lib/plugin_manager.rb /^ def pre_link_execute(arg_hash); execute_plugins(:pre_link_execute, arg_hash); end$/;" f class:PluginManager
587
+ pre_link_execute ./plugins/warnings_report/warnings_report.rb /^ def pre_link_execute( arg_hash )$/;" f class:WarningsReport
588
+ pre_mock_generate ./lib/plugin.rb /^ def pre_mock_generate(arg_hash); end$/;" f class:Plugin
589
+ pre_mock_generate ./lib/plugin_manager.rb /^ def pre_mock_generate(arg_hash); execute_plugins(:pre_mock_generate, arg_hash); end$/;" f class:PluginManager
590
+ pre_release ./lib/plugin.rb /^ def pre_release; end$/;" f class:Plugin
591
+ pre_release ./lib/plugin_manager.rb /^ def pre_release; execute_plugins(:pre_release); end$/;" f class:PluginManager
592
+ pre_runner_generate ./lib/plugin.rb /^ def pre_runner_generate(arg_hash); end$/;" f class:Plugin
593
+ pre_runner_generate ./lib/plugin_manager.rb /^ def pre_runner_generate(arg_hash); execute_plugins(:pre_runner_generate, arg_hash); end$/;" f class:PluginManager
594
+ pre_test ./lib/plugin.rb /^ def pre_test; end$/;" f class:Plugin
595
+ pre_test ./lib/plugin_manager.rb /^ def pre_test; execute_plugins(:pre_test); end$/;" f class:PluginManager
596
+ pre_test_fixture_execute ./lib/plugin.rb /^ def pre_test_fixture_execute(arg_hash); end$/;" f class:Plugin
597
+ pre_test_fixture_execute ./lib/plugin_manager.rb /^ def pre_test_fixture_execute(arg_hash); execute_plugins(:pre_test_fixture_execute, arg_hash); end$/;" f class:PluginManager
598
+ prepare_search_sources ./lib/file_finder.rb /^ def prepare_search_sources$/;" f class:FileFinder
599
+ preprocess_file ./lib/preprocessinator.rb /^ def preprocess_file(filepath)$/;" f class:Preprocessinator
600
+ preprocess_file ./lib/preprocessinator_file_handler.rb /^ def preprocess_file(filepath, includes)$/;" f class:PreprocessinatorFileHandler
601
+ preprocess_files_smartly ./lib/preprocessinator_helper.rb /^ def preprocess_files_smartly(file_list, preprocess_file_proc)$/;" f class:PreprocessinatorHelper
602
+ preprocess_includes ./lib/preprocessinator_helper.rb /^ def preprocess_includes(test, preprocess_includes_proc)$/;" f class:PreprocessinatorHelper
603
+ preprocess_mockable_headers ./lib/preprocessinator_helper.rb /^ def preprocess_mockable_headers(mock_list, preprocess_file_proc)$/;" f class:PreprocessinatorHelper
604
+ preprocess_shallow_includes ./lib/preprocessinator.rb /^ def preprocess_shallow_includes(filepath)$/;" f class:Preprocessinator
605
+ preprocess_test_and_invoke_test_mocks ./lib/preprocessinator.rb /^ def preprocess_test_and_invoke_test_mocks(test)$/;" f class:Preprocessinator
606
+ preprocess_test_file ./lib/preprocessinator_helper.rb /^ def preprocess_test_file(test, preprocess_file_proc)$/;" f class:PreprocessinatorHelper
607
+ print_error_results ./lib/tool_executor_helper.rb /^ def print_error_results(command_str, shell_result, boom=true)$/;" f class:ToolExecutorHelper
608
+ print_happy_results ./lib/tool_executor_helper.rb /^ def print_happy_results(command_str, shell_result, boom=true)$/;" f class:ToolExecutorHelper
609
+ print_plugin_failures ./lib/plugin_manager.rb /^ def print_plugin_failures$/;" f class:PluginManager
610
+ process_and_write_results ./lib/generator_test_results.rb /^ def process_and_write_results(unity_shell_result, results_file, test_file)$/;" f class:GeneratorTestResults
611
+ process_deep_dependencies ./lib/release_invoker_helper.rb /^ def process_deep_dependencies(dependencies_list)$/;" f class:ReleaseInvokerHelper
612
+ process_deep_dependencies ./lib/test_invoker_helper.rb /^ def process_deep_dependencies(files)$/;" f class:TestInvokerHelper
613
+ process_exception ./lib/build_invoker_utils.rb /^ def process_exception(exception, context, test_build=true)$/;" f class:BuildInvokerUtils
614
+ process_line ./lib/makefile.rb /^ def process_line(line)$/;" f class:Rake
615
+ process_release_config_change ./lib/project_config_manager.rb /^ def process_release_config_change$/;" f class:ProjectConfigManager
616
+ process_results ./lib/plugin_reportinator_helper.rb /^ def process_results(aggregate_results, results)$/;" f class:PluginReportinatorHelper
617
+ process_test_config_change ./lib/project_config_manager.rb /^ def process_test_config_change$/;" f class:ProjectConfigManager
618
+ rake_setup ./test_graveyard/integration_test_helper.rb /^ def rake_setup(rake_wrapper_file, *mocks_list)$/;" f class:Test
619
+ rakefile.rb rakefile.rb //;" f
620
+ read ./lib/file_wrapper.rb /^ def read(filepath)$/;" f class:FileWrapper
621
+ readlines ./lib/file_wrapper.rb /^ def readlines(filepath)$/;" f class:FileWrapper
622
+ redefine_global_constant ./test_graveyard/integration_test_helper.rb /^ def redefine_global_constant(constant, value)$/;" f class:Test
623
+ redefine_global_constant ./test_graveyard/unit_test_helper.rb /^ def redefine_global_constant(constant, value)$/;" f class:Test
624
+ reform_glob ./lib/file_path_utils.rb /^ def self.reform_glob(path)$/;" F class:FilePathUtils
625
+ refresh_c_deep_dependencies ./lib/release_invoker.rb /^ def refresh_c_deep_dependencies$/;" f class:ReleaseInvoker
626
+ refresh_deep_dependencies ./lib/test_invoker.rb /^ def refresh_deep_dependencies$/;" f class:TestInvoker
627
+ register_build_failure ./lib/plugin_manager.rb /^ def register_build_failure(message)$/;" f class:PluginManager
628
+ register_test_results_template ./lib/plugin_reportinator.rb /^ def register_test_results_template(template)$/;" f class:PluginReportinator
629
+ release_invoked? ./lib/task_invoker.rb /^ def release_invoked?$/;" f class:TaskInvoker
630
+ replace_flattened_config ./lib/configurator.rb /^ def replace_flattened_config(config)$/;" f class:Configurator
631
+ report ./test_graveyard/system_test_helper.rb /^ def report(message)$/;" f class:Test
632
+ report_coverage_results_all ./plugins/bullseye/lib/bullseye.rb /^ def report_coverage_results_all(coverage)$/;" f class:Bullseye
633
+ report_coverage_results_summary ./plugins/gcov/gcov.rb /^ def report_coverage_results_summary(sources)$/;" f class:Gcov
634
+ report_err ./test_graveyard/system_test_helper.rb /^ def report_err(message)$/;" f class:Test
635
+ report_per_file_coverage_results ./plugins/gcov/gcov.rb /^ def report_per_file_coverage_results(sources)$/;" f class:Gcov
636
+ report_per_function_coverage_results ./plugins/bullseye/lib/bullseye.rb /^ def report_per_function_coverage_results(sources)$/;" f class:Bullseye
637
+ require_file ./lib/system_wrapper.rb /^ def require_file(path)$/;" f class:SystemWrapper
638
+ reset_defaults ./lib/configurator.rb /^ def reset_defaults(config)$/;" f class:Configurator
639
+ reset_defaults ./lib/setupinator.rb /^ def reset_defaults(config_hash)$/;" f class:Setupinator
640
+ restore_config ./lib/configurator.rb /^ def restore_config$/;" f class:Configurator
641
+ restore_env ./spec/spec_system_helper.rb /^ def restore_env$/;" f
642
+ restore_stderr_redirect ./plugins/warnings_report/warnings_report.rb /^ def restore_stderr_redirect( hash )$/;" f class:WarningsReport
643
+ retrieve_value ./lib/configurator_validator.rb /^ def retrieve_value(config, keys)$/;" f class:ConfiguratorValidator
644
+ revise_file_list ./lib/file_system_utils.rb /^ def revise_file_list(list, revisions)$/;" f class:FileSystemUtils
645
+ rm_f ./lib/file_wrapper.rb /^ def rm_f(filepath, options={})$/;" f class:FileWrapper
646
+ rm_r ./lib/file_wrapper.rb /^ def rm_r(filepath, options={})$/;" f class:FileWrapper
647
+ ruby_success ./lib/system_wrapper.rb /^ def ruby_success$/;" f class:SystemWrapper
648
+ run_helper ./test_graveyard/system/file_system_test.rb /^ def run_helper(config_file, all_build_paths_indexes)$/;" f class:PathsTest
649
+ run_report ./lib/plugin_reportinator.rb /^ def run_report(stream, template, hash=nil, verbosity=Verbosity::NORMAL)$/;" f class:PluginReportinator
650
+ run_report ./lib/plugin_reportinator_helper.rb /^ def run_report(stream, template, hash, verbosity)$/;" f class:PluginReportinatorHelper
651
+ run_test_results_report ./lib/plugin_reportinator.rb /^ def run_test_results_report(hash, verbosity=Verbosity::NORMAL, &block)$/;" f class:PluginReportinator
652
+ sanity_check_warning ./lib/generator_test_results_sanity_checker.rb /^ def sanity_check_warning(file, message)$/;" f class:GeneratorTestResultsSanityChecker
653
+ search_paths ./lib/system_wrapper.rb /^ def search_paths$/;" f class:SystemWrapper
654
+ setInvalidTemperatureAndVerifyReinitialized ./examples/temp_sensor/test/TestTemperatureFilter.c /^void setInvalidTemperatureAndVerifyReinitialized(float invalidTemperature)$/;" f
655
+ setUp ./assets/test_example_file.c /^void setUp(void) {}$/;" f
656
+ setUp ./examples/blinky/test/test_BlinkTask.c /^void setUp(void)$/;" f
657
+ setUp ./examples/blinky/test/test_Configure.c /^void setUp(void)$/;" f
658
+ setUp ./examples/blinky/test/test_main.c /^void setUp(void) {} \/\/ every test file requires this function;$/;" f
659
+ setUp ./examples/temp_sensor/test/TestAdcConductor.c /^void setUp(void)$/;" f
660
+ setUp ./examples/temp_sensor/test/TestAdcHardware.c /^void setUp(void)$/;" f
661
+ setUp ./examples/temp_sensor/test/TestAdcModel.c /^void setUp(void)$/;" f
662
+ setUp ./examples/temp_sensor/test/TestExecutor.c /^void setUp(void)$/;" f
663
+ setUp ./examples/temp_sensor/test/TestMain.c /^void setUp(void)$/;" f
664
+ setUp ./examples/temp_sensor/test/TestModel.c /^void setUp(void)$/;" f
665
+ setUp ./examples/temp_sensor/test/TestTaskScheduler.c /^void setUp(void)$/;" f
666
+ setUp ./examples/temp_sensor/test/TestTemperatureCalculator.c /^void setUp(void)$/;" f
667
+ setUp ./examples/temp_sensor/test/TestTemperatureFilter.c /^void setUp(void)$/;" f
668
+ setUp ./examples/temp_sensor/test/TestTimerConductor.c /^void setUp(void)$/;" f
669
+ setUp ./examples/temp_sensor/test/TestTimerHardware.c /^void setUp(void)$/;" f
670
+ setUp ./examples/temp_sensor/test/TestTimerModel.c /^void setUp(void)$/;" f
671
+ setUp ./examples/temp_sensor/test/TestUsartBaudRateRegisterCalculator.c /^void setUp(void)$/;" f
672
+ setUp ./examples/temp_sensor/test/TestUsartConductor.c /^void setUp(void)$/;" f
673
+ setUp ./examples/temp_sensor/test/TestUsartHardware.c /^void setUp(void)$/;" f
674
+ setUp ./examples/temp_sensor/test/TestUsartModel.c /^void setUp(void)$/;" f
675
+ setUp ./test_graveyard/system/mocks/test/test_a_file.c /^void setUp(void) {}$/;" f
676
+ setUp ./test_graveyard/system/mocks/test/test_no_file.c /^void setUp(void) {}$/;" f
677
+ setUp ./test_graveyard/system/simple/test/test_other_stuff.c /^void setUp(void) {}$/;" f
678
+ setUp ./test_graveyard/system/simple/test/test_stuff.c /^void setUp(void) {}$/;" f
679
+ setValueAndVerifyResponse ./examples/temp_sensor/test/TestTemperatureFilter.c /^void setValueAndVerifyResponse(float input, float response)$/;" f
680
+ set_build_paths ./lib/configurator_builder.rb /^ def set_build_paths(in_hash)$/;" f class:ConfiguratorBuilder
681
+ set_force_build_filepaths ./lib/configurator_builder.rb /^ def set_force_build_filepaths(in_hash)$/;" f class:ConfiguratorBuilder
682
+ set_library_build_info_filepaths ./lib/configurator_builder.rb /^ def set_library_build_info_filepaths(hash)$/;" f class:ConfiguratorBuilder
683
+ set_rakefile_components ./lib/configurator_builder.rb /^ def set_rakefile_components(in_hash)$/;" f class:ConfiguratorBuilder
684
+ set_release_target ./lib/configurator_builder.rb /^ def set_release_target(in_hash)$/;" f class:ConfiguratorBuilder
685
+ set_stderr_redirect ./plugins/warnings_report/warnings_report.rb /^ def set_stderr_redirect( hash )$/;" f class:WarningsReport
686
+ set_system_objects ./lib/plugin_reportinator.rb /^ def set_system_objects(system_objects)$/;" f class:PluginReportinator
687
+ setup ./lib/cmock_builder.rb /^ def setup $/;" f class:CmockBuilder
688
+ setup ./lib/configurator.rb /^ def setup$/;" f class:Configurator
689
+ setup ./lib/configurator_plugins.rb /^ def setup$/;" f class:ConfiguratorPlugins
690
+ setup ./lib/plugin.rb /^ def setup; end$/;" f class:Plugin
691
+ setup ./lib/plugin_manager.rb /^ def setup$/;" f class:PluginManager
692
+ setup ./lib/plugin_reportinator.rb /^ def setup$/;" f class:PluginReportinator
693
+ setup ./lib/preprocessinator.rb /^ def setup$/;" f class:Preprocessinator
694
+ setup ./lib/project_config_manager.rb /^ def setup$/;" f class:ProjectConfigManager
695
+ setup ./lib/project_file_loader.rb /^ def setup$/;" f class:ProjectFileLoader
696
+ setup ./lib/setupinator.rb /^ def setup$/;" f class:Setupinator
697
+ setup ./lib/system_utils.rb /^ def setup$/;" f class:SystemUtils
698
+ setup ./lib/task_invoker.rb /^ def setup$/;" f class:TaskInvoker
699
+ setup ./lib/test_includes_extractor.rb /^ def setup$/;" f class:TestIncludesExtractor
700
+ setup ./lib/test_invoker.rb /^ def setup$/;" f class:TestInvoker
701
+ setup ./lib/tool_executor.rb /^ def setup$/;" f class:ToolExecutor
702
+ setup ./plugins/bullseye/lib/bullseye.rb /^ def setup$/;" f class:Bullseye
703
+ setup ./plugins/gcov/gcov.rb /^ def setup$/;" f class:Gcov
704
+ setup ./plugins/module_generator/lib/module_generator.rb /^ def setup$/;" f class:ModuleGenerator
705
+ setup ./plugins/stdout_ide_tests_report/lib/stdout_ide_tests_report.rb /^ def setup$/;" f class:StdoutIdeTestsReport
706
+ setup ./plugins/stdout_pretty_tests_report/lib/stdout_pretty_tests_report.rb /^ def setup$/;" f class:StdoutPrettyTestsReport
707
+ setup ./plugins/warnings_report/warnings_report.rb /^ def setup$/;" f class:WarningsReport
708
+ setup ./plugins/xml_tests_report/xml_tests_report.rb /^ def setup$/;" f class:XmlTestsReport
709
+ setup ./test_graveyard/integration/paths_test.rb /^ def setup$/;" f class:PathsTest
710
+ setup ./test_graveyard/integration/rake_rules_aux_dependencies_test.rb /^ def setup$/;" f class:RakeRulesAuxDependenciesTest
711
+ setup ./test_graveyard/integration/rake_rules_cmock_test.rb /^ def setup$/;" f class:RakeRulesCmockTest
712
+ setup ./test_graveyard/integration/rake_rules_preprocess_test.rb /^ def setup $/;" f class:RakeRulesPreprocessTest
713
+ setup ./test_graveyard/integration/rake_rules_test.rb /^ def setup$/;" f class:RakeRulesTest
714
+ setup ./test_graveyard/integration/rake_tasks_test.rb /^ def setup$/;" f class:RakeTasksTest
715
+ setup ./test_graveyard/system/file_system_test.rb /^ def setup$/;" f class:PathsTest
716
+ setup ./test_graveyard/system/project_mocks_test.rb /^ def setup$/;" f class:TestTasksTest
717
+ setup ./test_graveyard/system/project_simple_test.rb /^ def setup$/;" f class:ProjectSimpleTest
718
+ setup ./test_graveyard/system/rule_mocks_test.rb /^ def setup$/;" f class:MocksRuleTest
719
+ setup ./test_graveyard/system/rule_runners_test.rb /^ def setup$/;" f class:RunnersRuleTest
720
+ setup ./test_graveyard/unit/busted/configurator_builder_test.rb /^ def setup$/;" f class:ConfiguratorBuilderTest
721
+ setup ./test_graveyard/unit/busted/configurator_helper_test.rb /^ def setup$/;" f class:ConfiguratorHelperTest
722
+ setup ./test_graveyard/unit/busted/configurator_test.rb /^ def setup$/;" f class:ConfiguratorTest
723
+ setup ./test_graveyard/unit/busted/configurator_validator_test.rb /^ def setup$/;" f class:ConfiguratorValidatorTest
724
+ setup ./test_graveyard/unit/busted/deep_merge_fix_test.rb /^ def setup$/;" f class:DeepMergeFixTest
725
+ setup ./test_graveyard/unit/busted/dependinator_test.rb /^ def setup$/;" f class:DependinatorTest
726
+ setup ./test_graveyard/unit/busted/file_finder_helper_test.rb /^ def setup$/;" f class:FileFinderHelperTest
727
+ setup ./test_graveyard/unit/busted/file_finder_test.rb /^ def setup$/;" f class:FileFinderTest
728
+ setup ./test_graveyard/unit/busted/file_path_utils_test.rb /^ def setup$/;" f class:FilePathUtilsTest
729
+ setup ./test_graveyard/unit/busted/file_system_utils_test.rb /^ def setup$/;" f class:FileSystemUtilsTest
730
+ setup ./test_graveyard/unit/busted/generator_test.rb /^ def setup$/;" f class:GeneratorTest
731
+ setup ./test_graveyard/unit/busted/generator_test_results_test.rb /^ def setup$/;" f class:GeneratorTestResultsTest
732
+ setup ./test_graveyard/unit/busted/generator_test_runner_test.rb /^ def setup$/;" f class:GeneratorTestRunnerTest
733
+ setup ./test_graveyard/unit/busted/preprocessinator_file_handler_test.rb /^ def setup$/;" f class:PreprocessinatorFileHandlerTest
734
+ setup ./test_graveyard/unit/busted/preprocessinator_helper_test.rb /^ def setup$/;" f class:PreprocessinatorHelperTest
735
+ setup ./test_graveyard/unit/busted/preprocessinator_includes_handler_test.rb /^ def setup$/;" f class:PreprocessinatorIncludesHandlerTest
736
+ setup ./test_graveyard/unit/busted/preprocessinator_test.rb /^ def setup$/;" f class:PreprocessinatorTest
737
+ setup ./test_graveyard/unit/busted/project_file_loader_test.rb /^ def setup$/;" f class:ProjectFileLoaderTest
738
+ setup ./test_graveyard/unit/busted/setupinator_test.rb /^ def setup$/;" f class:SetupinatorTest
739
+ setup ./test_graveyard/unit/busted/streaminator_test.rb /^ def setup$/;" f class:StreaminatorTest
740
+ setup ./test_graveyard/unit/busted/task_invoker_test.rb /^ def setup$/;" f class:TaskInvokerTest
741
+ setup ./test_graveyard/unit/busted/test_includes_extractor_test.rb /^ def setup$/;" f class:TestIncludesExtractorTest
742
+ setup ./test_graveyard/unit/busted/test_invoker_helper_test.rb /^ def setup$/;" f class:TestInvokerHelperTest
743
+ setup ./test_graveyard/unit/busted/test_invoker_test.rb /^ def setup$/;" f class:TestInvokerTest
744
+ setup ./test_graveyard/unit/busted/tool_executor_helper_test.rb /^ def setup$/;" f class:ToolExecutorHelperTest
745
+ setup ./test_graveyard/unit/busted/tool_executor_test.rb /^ def setup$/;" f class:ToolExecutorTest
746
+ setup ./test_graveyard/unit/busted/verbosinator_test.rb /^ def setup$/;" f class:VerbosinatorTest
747
+ setup ./test_graveyard/unit/preprocessinator_extractor_test.rb /^ def setup$/;" f class:PreprocessinatorExtractorTest
748
+ setup_and_invoke ./lib/test_invoker.rb /^ def setup_and_invoke(tests, context=TEST_SYM, options={:force_run => true})$/;" f class:TestInvoker
749
+ setup_and_invoke_asm_objects ./lib/release_invoker.rb /^ def setup_and_invoke_asm_objects( asm_files )$/;" f class:ReleaseInvoker
750
+ setup_and_invoke_c_objects ./lib/release_invoker.rb /^ def setup_and_invoke_c_objects( c_files )$/;" f class:ReleaseInvoker
751
+ setup_log_filepath ./lib/loginator.rb /^ def setup_log_filepath$/;" f class:Loginator
752
+ setup_test_executable_dependencies ./lib/dependinator.rb /^ def setup_test_executable_dependencies(test, objects)$/;" f class:Dependinator
753
+ shell_backticks ./lib/system_wrapper.rb /^ def shell_backticks(command)$/;" f class:SystemWrapper
754
+ shell_system ./lib/system_wrapper.rb /^ def shell_system(command)$/;" f class:SystemWrapper
755
+ short_task_should ./spec/par_map_spec.rb /^def short_task_should(n) $/;" f
756
+ should_output? ./lib/verbosinator.rb /^ def should_output?(level)$/;" f class:Verbosinator
757
+ spec/configurator_builder_spec.rb spec/configurator_builder_spec.rb //;" f
758
+ spec/configurator_helper_spec.rb spec/configurator_helper_spec.rb //;" f
759
+ spec/configurator_spec.rb spec/configurator_spec.rb //;" f
760
+ spec/preprocessinator_extractor_spec.rb spec/preprocessinator_extractor_spec.rb //;" f
761
+ spec/system/deployment.rb spec/system/deployment.rb //;" f
762
+ spec/uncatagorized_specs_spec.rb spec/uncatagorized_specs_spec.rb //;" f
763
+ standardize ./lib/file_path_utils.rb /^ def self.standardize(path)$/;" F class:FilePathUtils
764
+ standardize_paths ./lib/configurator.rb /^ def standardize_paths(config)$/;" f class:Configurator
765
+ startTime ./examples/temp_sensor/src/TaskScheduler.c /^ uint32 startTime;$/;" m struct:_Task file:
766
+ stderr_flush ./lib/stream_wrapper.rb /^ def stderr_flush$/;" f class:StreamWrapper
767
+ stderr_puts ./lib/stream_wrapper.rb /^ def stderr_puts(string)$/;" f class:StreamWrapper
768
+ stderr_puts ./lib/streaminator.rb /^ def stderr_puts(string, verbosity=Verbosity::NORMAL)$/;" f class:Streaminator
769
+ stderr_redirect_cmdline_append ./lib/tool_executor_helper.rb /^ def stderr_redirect_cmdline_append(tool_config)$/;" f class:ToolExecutorHelper
770
+ stderr_redirection ./lib/tool_executor_helper.rb /^ def stderr_redirection(tool_config, logging)$/;" f class:ToolExecutorHelper
771
+ stdout_flush ./lib/stream_wrapper.rb /^ def stdout_flush$/;" f class:StreamWrapper
772
+ stdout_puts ./lib/stream_wrapper.rb /^ def stdout_puts(string)$/;" f class:StreamWrapper
773
+ stdout_puts ./lib/streaminator.rb /^ def stdout_puts(string, verbosity=Verbosity::NORMAL)$/;" f class:Streaminator
774
+ store_config ./lib/configurator.rb /^ def store_config$/;" f class:Configurator
775
+ stream_puts ./lib/streaminator.rb /^ def stream_puts(stream, string, verbosity=Verbosity::NORMAL)$/;" f class:Streaminator
776
+ subtract ./test_graveyard/system/simple/source/stuff.c /^int subtract(int a, int b)$/;" f
777
+ summary ./lib/plugin.rb /^ def summary; end$/;" f class:Plugin
778
+ summary ./lib/plugin_manager.rb /^ def summary; execute_plugins(:summary); end$/;" f class:PluginManager
779
+ summary ./plugins/bullseye/lib/bullseye.rb /^ def summary$/;" f class:Bullseye
780
+ summary ./plugins/gcov/gcov.rb /^ def summary$/;" f class:Gcov
781
+ summary ./plugins/stdout_ide_tests_report/lib/stdout_ide_tests_report.rb /^ def summary$/;" f class:StdoutIdeTestsReport
782
+ summary ./plugins/stdout_pretty_tests_report/lib/stdout_pretty_tests_report.rb /^ def summary$/;" f class:StdoutPrettyTestsReport
783
+ systemTime ./examples/temp_sensor/src/TimerInterruptHandler.c /^static uint32 systemTime;$/;" v file:
784
+ task_invoked? ./lib/rake_utils.rb /^ def task_invoked?(task_regex)$/;" f class:RakeUtils
785
+ task_list ./lib/rake_wrapper.rb /^ def task_list$/;" f class:RakeWrapper
786
+ tcsh_shell? ./lib/system_utils.rb /^ def tcsh_shell?$/;" f class:SystemUtils
787
+ tearDown ./assets/test_example_file.c /^void tearDown(void) {}$/;" f
788
+ tearDown ./examples/blinky/test/test_BlinkTask.c /^void tearDown(void)$/;" f
789
+ tearDown ./examples/blinky/test/test_Configure.c /^void tearDown(void)$/;" f
790
+ tearDown ./examples/blinky/test/test_main.c /^void tearDown(void) {} \/\/ every test file requires this function;$/;" f
791
+ tearDown ./examples/temp_sensor/test/TestAdcConductor.c /^void tearDown(void)$/;" f
792
+ tearDown ./examples/temp_sensor/test/TestAdcHardware.c /^void tearDown(void)$/;" f
793
+ tearDown ./examples/temp_sensor/test/TestAdcModel.c /^void tearDown(void)$/;" f
794
+ tearDown ./examples/temp_sensor/test/TestExecutor.c /^void tearDown(void)$/;" f
795
+ tearDown ./examples/temp_sensor/test/TestMain.c /^void tearDown(void)$/;" f
796
+ tearDown ./examples/temp_sensor/test/TestModel.c /^void tearDown(void)$/;" f
797
+ tearDown ./examples/temp_sensor/test/TestTaskScheduler.c /^void tearDown(void)$/;" f
798
+ tearDown ./examples/temp_sensor/test/TestTemperatureCalculator.c /^void tearDown(void)$/;" f
799
+ tearDown ./examples/temp_sensor/test/TestTemperatureFilter.c /^void tearDown(void)$/;" f
800
+ tearDown ./examples/temp_sensor/test/TestTimerConductor.c /^void tearDown(void)$/;" f
801
+ tearDown ./examples/temp_sensor/test/TestTimerHardware.c /^void tearDown(void)$/;" f
802
+ tearDown ./examples/temp_sensor/test/TestTimerModel.c /^void tearDown(void)$/;" f
803
+ tearDown ./examples/temp_sensor/test/TestUsartBaudRateRegisterCalculator.c /^void tearDown(void)$/;" f
804
+ tearDown ./examples/temp_sensor/test/TestUsartConductor.c /^void tearDown(void)$/;" f
805
+ tearDown ./examples/temp_sensor/test/TestUsartHardware.c /^void tearDown(void)$/;" f
806
+ tearDown ./examples/temp_sensor/test/TestUsartModel.c /^void tearDown(void)$/;" f
807
+ tearDown ./test_graveyard/system/mocks/test/test_a_file.c /^void tearDown(void) {}$/;" f
808
+ tearDown ./test_graveyard/system/mocks/test/test_no_file.c /^void tearDown(void) {}$/;" f
809
+ tearDown ./test_graveyard/system/simple/test/test_other_stuff.c /^void tearDown(void) {}$/;" f
810
+ tearDown ./test_graveyard/system/simple/test/test_stuff.c /^void tearDown(void) {}$/;" f
811
+ teardown ./test_graveyard/integration/paths_test.rb /^ def teardown$/;" f class:PathsTest
812
+ teardown ./test_graveyard/integration/rake_rules_aux_dependencies_test.rb /^ def teardown$/;" f class:RakeRulesAuxDependenciesTest
813
+ teardown ./test_graveyard/integration/rake_rules_cmock_test.rb /^ def teardown$/;" f class:RakeRulesCmockTest
814
+ teardown ./test_graveyard/integration/rake_rules_preprocess_test.rb /^ def teardown$/;" f class:RakeRulesPreprocessTest
815
+ teardown ./test_graveyard/integration/rake_rules_test.rb /^ def teardown$/;" f class:RakeRulesTest
816
+ teardown ./test_graveyard/integration/rake_tasks_test.rb /^ def teardown$/;" f class:RakeTasksTest
817
+ teardown ./test_graveyard/system/file_system_test.rb /^ def teardown$/;" f class:PathsTest
818
+ teardown ./test_graveyard/system/project_mocks_test.rb /^ def teardown$/;" f class:TestTasksTest
819
+ teardown ./test_graveyard/system/project_simple_test.rb /^ def teardown$/;" f class:ProjectSimpleTest
820
+ teardown ./test_graveyard/system/rule_mocks_test.rb /^ def teardown$/;" f class:MocksRuleTest
821
+ teardown ./test_graveyard/system/rule_runners_test.rb /^ def teardown$/;" f class:RunnersRuleTest
822
+ teardown ./test_graveyard/unit/busted/configurator_builder_test.rb /^ def teardown$/;" f class:ConfiguratorBuilderTest
823
+ teardown ./test_graveyard/unit/busted/configurator_helper_test.rb /^ def teardown$/;" f class:ConfiguratorHelperTest
824
+ teardown ./test_graveyard/unit/busted/configurator_test.rb /^ def teardown$/;" f class:ConfiguratorTest
825
+ teardown ./test_graveyard/unit/busted/configurator_validator_test.rb /^ def teardown$/;" f class:ConfiguratorValidatorTest
826
+ teardown ./test_graveyard/unit/busted/deep_merge_fix_test.rb /^ def teardown$/;" f class:DeepMergeFixTest
827
+ teardown ./test_graveyard/unit/busted/dependinator_test.rb /^ def teardown$/;" f class:DependinatorTest
828
+ teardown ./test_graveyard/unit/busted/file_finder_helper_test.rb /^ def teardown$/;" f class:FileFinderHelperTest
829
+ teardown ./test_graveyard/unit/busted/file_finder_test.rb /^ def teardown$/;" f class:FileFinderTest
830
+ teardown ./test_graveyard/unit/busted/file_path_utils_test.rb /^ def teardown$/;" f class:FilePathUtilsTest
831
+ teardown ./test_graveyard/unit/busted/file_system_utils_test.rb /^ def teardown$/;" f class:FileSystemUtilsTest
832
+ teardown ./test_graveyard/unit/busted/generator_test.rb /^ def teardown$/;" f class:GeneratorTest
833
+ teardown ./test_graveyard/unit/busted/generator_test_results_test.rb /^ def teardown$/;" f class:GeneratorTestResultsTest
834
+ teardown ./test_graveyard/unit/busted/generator_test_runner_test.rb /^ def teardown$/;" f class:GeneratorTestRunnerTest
835
+ teardown ./test_graveyard/unit/busted/preprocessinator_file_handler_test.rb /^ def teardown$/;" f class:PreprocessinatorFileHandlerTest
836
+ teardown ./test_graveyard/unit/busted/preprocessinator_helper_test.rb /^ def teardown$/;" f class:PreprocessinatorHelperTest
837
+ teardown ./test_graveyard/unit/busted/preprocessinator_includes_handler_test.rb /^ def teardown$/;" f class:PreprocessinatorIncludesHandlerTest
838
+ teardown ./test_graveyard/unit/busted/preprocessinator_test.rb /^ def teardown$/;" f class:PreprocessinatorTest
839
+ teardown ./test_graveyard/unit/busted/project_file_loader_test.rb /^ def teardown$/;" f class:ProjectFileLoaderTest
840
+ teardown ./test_graveyard/unit/busted/setupinator_test.rb /^ def teardown$/;" f class:SetupinatorTest
841
+ teardown ./test_graveyard/unit/busted/streaminator_test.rb /^ def teardown$/;" f class:StreaminatorTest
842
+ teardown ./test_graveyard/unit/busted/task_invoker_test.rb /^ def teardown$/;" f class:TaskInvokerTest
843
+ teardown ./test_graveyard/unit/busted/test_includes_extractor_test.rb /^ def teardown$/;" f class:TestIncludesExtractorTest
844
+ teardown ./test_graveyard/unit/busted/test_invoker_helper_test.rb /^ def teardown$/;" f class:TestInvokerHelperTest
845
+ teardown ./test_graveyard/unit/busted/test_invoker_test.rb /^ def teardown$/;" f class:TestInvokerTest
846
+ teardown ./test_graveyard/unit/busted/tool_executor_helper_test.rb /^ def teardown$/;" f class:ToolExecutorHelperTest
847
+ teardown ./test_graveyard/unit/busted/tool_executor_test.rb /^ def teardown$/;" f class:ToolExecutorTest
848
+ teardown ./test_graveyard/unit/busted/verbosinator_test.rb /^ def teardown$/;" f class:VerbosinatorTest
849
+ teardown ./test_graveyard/unit/preprocessinator_extractor_test.rb /^ def teardown$/;" f class:PreprocessinatorExtractorTest
850
+ temperatureInCelcius ./examples/temp_sensor/src/TemperatureFilter.c /^static float temperatureInCelcius;$/;" v file:
851
+ testCalculateBaudRateRegisterSettingShouldCalculateRegisterSettingAppropriately ./examples/temp_sensor/test/TestUsartBaudRateRegisterCalculator.c /^void testCalculateBaudRateRegisterSettingShouldCalculateRegisterSettingAppropriately(void)$/;" f
852
+ testDoGetSampleShouldReturn_FALSE_WhenTaskSchedulerReturns_FALSE ./examples/temp_sensor/test/TestAdcModel.c /^void testDoGetSampleShouldReturn_FALSE_WhenTaskSchedulerReturns_FALSE(void)$/;" f
853
+ testDoGetSampleShouldReturn_TRUE_WhenTaskSchedulerReturns_TRUE ./examples/temp_sensor/test/TestAdcModel.c /^void testDoGetSampleShouldReturn_TRUE_WhenTaskSchedulerReturns_TRUE(void)$/;" f
854
+ testGetBaudRateRegisterSettingShouldReturnAppropriateBaudRateRegisterSetting ./examples/temp_sensor/test/TestUsartModel.c /^void testGetBaudRateRegisterSettingShouldReturnAppropriateBaudRateRegisterSetting(void)$/;" f
855
+ testGetFormattedTemperatureFormatsTemperatureFromCalculatorAppropriately ./examples/temp_sensor/test/TestUsartModel.c /^void testGetFormattedTemperatureFormatsTemperatureFromCalculatorAppropriately(void)$/;" f
856
+ testGetSampleCompleteShouldReturn_FALSE_WhenTemperatureSensorSampleReadyReturns_FALSE ./examples/temp_sensor/test/TestAdcHardware.c /^void testGetSampleCompleteShouldReturn_FALSE_WhenTemperatureSensorSampleReadyReturns_FALSE(void)$/;" f
857
+ testGetSampleCompleteShouldReturn_TRUE_WhenTemperatureSensorSampleReadyReturns_TRUE ./examples/temp_sensor/test/TestAdcHardware.c /^void testGetSampleCompleteShouldReturn_TRUE_WhenTemperatureSensorSampleReadyReturns_TRUE(void)$/;" f
858
+ testGetSampleShouldDelegateToAdcTemperatureSensor ./examples/temp_sensor/test/TestAdcHardware.c /^void testGetSampleShouldDelegateToAdcTemperatureSensor(void)$/;" f
859
+ testInitShouldCallHardwareInit ./examples/temp_sensor/test/TestAdcConductor.c /^void testInitShouldCallHardwareInit(void)$/;" f
860
+ testInitShouldCallHardwareInit ./examples/temp_sensor/test/TestTimerConductor.c /^void testInitShouldCallHardwareInit(void)$/;" f
861
+ testInitShouldCallInitOfAllConductorsAndTheModel ./examples/temp_sensor/test/TestExecutor.c /^void testInitShouldCallInitOfAllConductorsAndTheModel(void)$/;" f
862
+ testInitShouldCallSchedulerAndTemperatureFilterInit ./examples/temp_sensor/test/TestModel.c /^void testInitShouldCallSchedulerAndTemperatureFilterInit(void)$/;" f
863
+ testInitShouldConfigureUsartPeripheralByCallingConfiguratorAppropriately ./examples/temp_sensor/test/TestUsartHardware.c /^void testInitShouldConfigureUsartPeripheralByCallingConfiguratorAppropriately(void)$/;" f
864
+ testInitShouldDelegateAppropriatelyToConfigurator ./examples/temp_sensor/test/TestTimerHardware.c /^void testInitShouldDelegateAppropriatelyToConfigurator(void)$/;" f
865
+ testInitShouldDelegateToConfiguratorAndTemperatureSensor ./examples/temp_sensor/test/TestAdcHardware.c /^void testInitShouldDelegateToConfiguratorAndTemperatureSensor(void)$/;" f
866
+ testJustHereToTest_Should_ProperlyPassAStructAndVerifyIt ./examples/temp_sensor/test/TestAdcConductor.c /^void testJustHereToTest_Should_ProperlyPassAStructAndVerifyIt(void)$/;" f
867
+ testMainShouldCallExecutorInitAndContinueToCallExecutorRunUntilHalted ./examples/temp_sensor/test/TestMain.c /^void testMainShouldCallExecutorInitAndContinueToCallExecutorRunUntilHalted(void)$/;" f
868
+ testProcessInputShouldDelegateToTemperatureCalculatorAndPassResultToFilter ./examples/temp_sensor/test/TestAdcModel.c /^void testProcessInputShouldDelegateToTemperatureCalculatorAndPassResultToFilter(void)$/;" f
869
+ testRunShouldCallRunForEachConductorAndReturnTrueAlways ./examples/temp_sensor/test/TestExecutor.c /^void testRunShouldCallRunForEachConductorAndReturnTrueAlways(void)$/;" f
870
+ testRunShouldGetCurrentTemperatureAndTransmitIfSchedulerSaysItIsTime ./examples/temp_sensor/test/TestUsartConductor.c /^void testRunShouldGetCurrentTemperatureAndTransmitIfSchedulerSaysItIsTime(void)$/;" f
871
+ testRunShouldGetLatestSampleFromAdcAndPassItToModelAndStartNewConversionWhenItIsTime ./examples/temp_sensor/test/TestAdcConductor.c /^void testRunShouldGetLatestSampleFromAdcAndPassItToModelAndStartNewConversionWhenItIsTime(void)$/;" f
872
+ testRunShouldGetSystemTimeAndPassOnToModelForEventScheduling ./examples/temp_sensor/test/TestTimerConductor.c /^void testRunShouldGetSystemTimeAndPassOnToModelForEventScheduling(void)$/;" f
873
+ testRunShouldNotDoAnythingIfItIsNotTime ./examples/temp_sensor/test/TestAdcConductor.c /^void testRunShouldNotDoAnythingIfItIsNotTime(void)$/;" f
874
+ testRunShouldNotDoAnythingIfSchedulerSaysItIsNotTimeYet ./examples/temp_sensor/test/TestUsartConductor.c /^void testRunShouldNotDoAnythingIfSchedulerSaysItIsNotTimeYet(void)$/;" f
875
+ testRunShouldNotPassAdcResultToModelIfSampleIsNotComplete ./examples/temp_sensor/test/TestAdcConductor.c /^void testRunShouldNotPassAdcResultToModelIfSampleIsNotComplete(void)$/;" f
876
+ testShouldClearAdcDoFlagAfterReported ./examples/temp_sensor/test/TestTaskScheduler.c /^void testShouldClearAdcDoFlagAfterReported(void)$/;" f
877
+ testShouldClearUsartDoFlagAfterReported ./examples/temp_sensor/test/TestTaskScheduler.c /^void testShouldClearUsartDoFlagAfterReported(void)$/;" f
878
+ testShouldInitializeHardwareWhenInitCalled ./examples/temp_sensor/test/TestUsartConductor.c /^void testShouldInitializeHardwareWhenInitCalled(void)$/;" f
879
+ testShouldInitializeTemeratureToInvalidValue ./examples/temp_sensor/test/TestTemperatureFilter.c /^void testShouldInitializeTemeratureToInvalidValue(void)$/;" f
880
+ testShouldInitializeTemperatureAfterCallToInit ./examples/temp_sensor/test/TestTemperatureFilter.c /^void testShouldInitializeTemperatureAfterCallToInit(void)$/;" f
881
+ testShouldResetAverageIfPassedInfinityOrInvalidValue ./examples/temp_sensor/test/TestTemperatureFilter.c /^void testShouldResetAverageIfPassedInfinityOrInvalidValue(void)$/;" f
882
+ testShouldReturnErrorMessageUponInvalidTemperatureValue ./examples/temp_sensor/test/TestUsartModel.c /^void testShouldReturnErrorMessageUponInvalidTemperatureValue(void)$/;" f
883
+ testShouldReturnNegativeInfinityWhen_0_millivoltsInput ./examples/temp_sensor/test/TestTemperatureCalculator.c /^void testShouldReturnNegativeInfinityWhen_0_millivoltsInput(void)$/;" f
884
+ testShouldReturnWakeupMessage ./examples/temp_sensor/test/TestUsartModel.c /^void testShouldReturnWakeupMessage(void)$/;" f
885
+ testShouldScheduleAdcTaskAfter100ms ./examples/temp_sensor/test/TestTaskScheduler.c /^void testShouldScheduleAdcTaskAfter100ms(void)$/;" f
886
+ testShouldScheduleAdcTaskEvery100ms ./examples/temp_sensor/test/TestTaskScheduler.c /^void testShouldScheduleAdcTaskEvery100ms(void)$/;" f
887
+ testShouldScheduleAdcTaskOnlyOncePerPeriod ./examples/temp_sensor/test/TestTaskScheduler.c /^void testShouldScheduleAdcTaskOnlyOncePerPeriod(void)$/;" f
888
+ testShouldScheduleUsartTaskAfter1000ms ./examples/temp_sensor/test/TestTaskScheduler.c /^void testShouldScheduleUsartTaskAfter1000ms(void)$/;" f
889
+ testShouldScheduleUsartTaskEvery1000ms ./examples/temp_sensor/test/TestTaskScheduler.c /^void testShouldScheduleUsartTaskEvery1000ms(void)$/;" f
890
+ testShouldScheduleUsartTaskOnlyOncePerPeriod ./examples/temp_sensor/test/TestTaskScheduler.c /^void testShouldScheduleUsartTaskOnlyOncePerPeriod(void)$/;" f
891
+ testShouldWeightEachSubsequentValueBy25PercentAfterInitialValue ./examples/temp_sensor/test/TestTemperatureFilter.c /^void testShouldWeightEachSubsequentValueBy25PercentAfterInitialValue(void)$/;" f
892
+ testTemperatureCalculatorShouldCalculateTemperatureFromMillivolts ./examples/temp_sensor/test/TestTemperatureCalculator.c /^void testTemperatureCalculatorShouldCalculateTemperatureFromMillivolts(void)$/;" f
893
+ testTransmitStringShouldSendDesiredStringOutUsingUsart ./examples/temp_sensor/test/TestUsartHardware.c /^void testTransmitStringShouldSendDesiredStringOutUsingUsart(void)$/;" f
894
+ testUpdateTimeShouldDelegateToTaskScheduler ./examples/temp_sensor/test/TestTimerModel.c /^void testUpdateTimeShouldDelegateToTaskScheduler(void)$/;" f
895
+ test_AdcConductor_AlsoHereToTest_Should_ProperlyReturnAStructAsExpected1 ./examples/temp_sensor/test/TestAdcConductor.c /^void test_AdcConductor_AlsoHereToTest_Should_ProperlyReturnAStructAsExpected1(void)$/;" f
896
+ test_AdcConductor_AlsoHereToTest_Should_ProperlyReturnAStructAsExpected2 ./examples/temp_sensor/test/TestAdcConductor.c /^void test_AdcConductor_AlsoHereToTest_Should_ProperlyReturnAStructAsExpected2(void)$/;" f
897
+ test_AdcConductor_YetAnotherTest_Should_VerifyThatPointersToStructsAreTestable ./examples/temp_sensor/test/TestAdcConductor.c /^void test_AdcConductor_YetAnotherTest_Should_VerifyThatPointersToStructsAreTestable(void)$/;" f
898
+ test_AppMain_should_call_configure ./examples/blinky/test/test_main.c /^void test_AppMain_should_call_configure(void)$/;" f
899
+ test_AppMain_should_call_configure_and_BlinkTask ./examples/blinky/test/test_main.c /^void test_AppMain_should_call_configure_and_BlinkTask(void)$/;" f
900
+ test_BlinkTask_should_toggle_led ./examples/blinky/test/test_BlinkTask.c /^void test_BlinkTask_should_toggle_led(void)$/;" f
901
+ test_BlinkTask_should_toggle_led_LOW ./examples/blinky/test/test_BlinkTask.c /^void test_BlinkTask_should_toggle_led_LOW(void)$/;" f
902
+ test_Configure_should_setup_timer_and_port ./examples/blinky/test/test_Configure.c /^void test_Configure_should_setup_timer_and_port(void)$/;" f
903
+ test_ISR_should_increment_tick ./examples/blinky/test/test_main.c /^void test_ISR_should_increment_tick(void)$/;" f
904
+ test_ISR_should_set_blinkReady_increment_tick ./examples/blinky/test/test_main.c /^void test_ISR_should_set_blinkReady_increment_tick(void)$/;" f
905
+ test_a_function ./test_graveyard/system/mocks/test/test_no_file.c /^void test_a_function(void)$/;" f
906
+ test_a_function_should_fail_because_missing_expectation ./test_graveyard/system/mocks/test/test_a_file.c /^void test_a_function_should_fail_because_missing_expectation(void)$/;" f
907
+ test_a_function_should_fail_because_wrong_return_value ./test_graveyard/system/mocks/test/test_a_file.c /^void test_a_function_should_fail_because_wrong_return_value(void)$/;" f
908
+ test_a_function_should_pass_because_we_lied_with_our_mocks ./test_graveyard/system/mocks/test/test_a_file.c /^void test_a_function_should_pass_because_we_lied_with_our_mocks(void)$/;" f
909
+ test_a_function_should_pass_with_values_that_make_sense ./test_graveyard/system/mocks/test/test_a_file.c /^void test_a_function_should_pass_with_values_that_make_sense(void)$/;" f
910
+ test_a_single_thing ./test_graveyard/system/simple/test/test_stuff.c /^void test_a_single_thing(void)$/;" f
911
+ test_add_numbers_adds_numbers ./assets/test_example_file.c /^void test_add_numbers_adds_numbers(void) {$/;" f
912
+ test_add_numbers_will_fail ./assets/test_example_file.c /^void test_add_numbers_will_fail(void) {$/;" f
913
+ test_add_should_fail ./test_graveyard/system/simple/test/test_other_stuff.c /^void test_add_should_fail(void)$/;" f
914
+ test_add_should_succeed_1 ./test_graveyard/system/simple/test/test_other_stuff.c /^void test_add_should_succeed_1(void)$/;" f
915
+ test_add_should_succeed_2 ./test_graveyard/system/simple/test/test_other_stuff.c /^void test_add_should_succeed_2(void)$/;" f
916
+ test_another_thing ./test_graveyard/system/simple/test/test_stuff.c /^ void test_another_thing ( void )$/;" f
917
+ test_asset_path ./spec/spec_system_helper.rb /^def test_asset_path(asset_file_name)$/;" f
918
+ test_fail ./test_graveyard/system/simple/test/test_other_stuff.c /^void test_fail()$/;" f
919
+ test_graveyard/integration/paths.yml test_graveyard/integration/paths.yml //;" f
920
+ test_graveyard/rakefile_rules.rb test_graveyard/rakefile_rules.rb //;" f
921
+ test_graveyard/rakefile_rules_aux_dependencies.rb test_graveyard/rakefile_rules_aux_dependencies.rb //;" f
922
+ test_graveyard/rakefile_rules_cmock.rb test_graveyard/rakefile_rules_cmock.rb //;" f
923
+ test_graveyard/rakefile_rules_preprocess.rb test_graveyard/rakefile_rules_preprocess.rb //;" f
924
+ test_graveyard/rakefile_tasks.rb test_graveyard/rakefile_tasks.rb //;" f
925
+ test_graveyard/system/file_system_dependencies.yml test_graveyard/system/file_system_dependencies.yml //;" f
926
+ test_graveyard/system/file_system_kitchen_sink.yml test_graveyard/system/file_system_kitchen_sink.yml //;" f
927
+ test_graveyard/system/file_system_mocks.yml test_graveyard/system/file_system_mocks.yml //;" f
928
+ test_graveyard/system/file_system_preprocess.yml test_graveyard/system/file_system_preprocess.yml //;" f
929
+ test_graveyard/system/file_system_simple.yml test_graveyard/system/file_system_simple.yml //;" f
930
+ test_graveyard/system/mocks/include/a_file.h test_graveyard/system/mocks/include/a_file.h //;" f
931
+ test_graveyard/system/mocks/include/other_stuff.h test_graveyard/system/mocks/include/other_stuff.h //;" f
932
+ test_graveyard/system/mocks/include/stuff.h test_graveyard/system/mocks/include/stuff.h //;" f
933
+ test_graveyard/system/project_mocks.yml test_graveyard/system/project_mocks.yml //;" f
934
+ test_graveyard/system/project_simple.yml test_graveyard/system/project_simple.yml //;" f
935
+ test_graveyard/system/simple/include/other_stuff.h test_graveyard/system/simple/include/other_stuff.h //;" f
936
+ test_graveyard/system/simple/include/stuff.h test_graveyard/system/simple/include/stuff.h //;" f
937
+ test_invoked? ./lib/task_invoker.rb /^ def test_invoked?$/;" f class:TaskInvoker
938
+ test_results_error_handler ./lib/generator_helper.rb /^ def test_results_error_handler(executable, shell_result)$/;" f class:GeneratorHelper
939
+ test_some_multiline_test_case_action ./test_graveyard/system/simple/test/test_stuff.c /^test_some_multiline_test_case_action$/;" f
940
+ test_some_non_void_param_stuff ./test_graveyard/system/simple/test/test_stuff.c /^void test_some_non_void_param_stuff()$/;" f
941
+ test_subtract_should_fail ./test_graveyard/system/simple/test/test_stuff.c /^void test_subtract_should_fail(void)$/;" f
942
+ test_subtract_should_succeed_1 ./test_graveyard/system/simple/test/test_stuff.c /^void test_subtract_should_succeed_1(void)$/;" f
943
+ test_subtract_should_succeed_2 ./test_graveyard/system/simple/test/test_stuff.c /^void test_subtract_should_succeed_2(void)$/;" f
944
+ this ./examples/temp_sensor/src/TaskScheduler.c /^static TaskSchedulerInstance this;$/;" v file:
945
+ time_now ./lib/system_wrapper.rb /^ def time_now$/;" f class:SystemWrapper
946
+ tools_setup ./lib/configurator.rb /^ def tools_setup(config)$/;" f class:Configurator
947
+ tools_supplement_arguments ./lib/configurator.rb /^ def tools_supplement_arguments(config)$/;" f class:Configurator
948
+ touch ./lib/file_wrapper.rb /^ def touch(filepath, options={})$/;" f class:FileWrapper
949
+ touch_force_rebuild_files ./lib/dependinator.rb /^ def touch_force_rebuild_files$/;" f class:Dependinator
950
+ usart ./examples/temp_sensor/src/TaskScheduler.c /^ Task usart;$/;" m struct:_TaskSchedulerInstance file:
951
+ validate ./lib/configurator.rb /^ def validate(config)$/;" f class:Configurator
952
+ validate_executable_filepath ./lib/configurator_validator.rb /^ def validate_executable_filepath(config, *keys)$/;" f class:ConfiguratorValidator
953
+ validate_filepath ./lib/configurator_validator.rb /^ def validate_filepath(config, *keys)$/;" f class:ConfiguratorValidator
954
+ validate_filepath_simple ./lib/configurator_validator.rb /^ def validate_filepath_simple(path, *keys)$/;" f class:ConfiguratorValidator
955
+ validate_path_list ./lib/configurator_validator.rb /^ def validate_path_list(config, *keys)$/;" f class:ConfiguratorValidator
956
+ validate_paths ./lib/configurator_setup.rb /^ def validate_paths(config)$/;" f class:ConfiguratorSetup
957
+ validate_plugins ./lib/configurator_setup.rb /^ def validate_plugins(config)$/;" f class:ConfiguratorSetup
958
+ validate_required_section_values ./lib/configurator_setup.rb /^ def validate_required_section_values(config)$/;" f class:ConfiguratorSetup
959
+ validate_required_sections ./lib/configurator_setup.rb /^ def validate_required_sections(config)$/;" f class:ConfiguratorSetup
960
+ validate_tool_stderr_redirect ./lib/configurator_validator.rb /^ def validate_tool_stderr_redirect(config, tools, tool)$/;" f class:ConfiguratorValidator
961
+ validate_tools ./lib/configurator_setup.rb /^ def validate_tools(config)$/;" f class:ConfiguratorSetup
962
+ verify ./lib/generator_test_results_sanity_checker.rb /^ def verify(results, unity_exit_code)$/;" f class:GeneratorTestResultsSanityChecker
963
+ verify_coverage_file ./plugins/bullseye/lib/bullseye.rb /^ def verify_coverage_file$/;" f class:Bullseye
964
+ wakeup ./examples/temp_sensor/src/UsartModel.c /^char* wakeup = "It's Awesome Time!\\n";$/;" v
965
+ windows ./lib/system_wrapper.rb /^ def self.windows?$/;" F class:SystemWrapper
966
+ windows? ./lib/system_wrapper.rb /^ def windows?$/;" f class:SystemWrapper
967
+ with_constrained_env ./spec/spec_system_helper.rb /^ def with_constrained_env$/;" f
968
+ with_context ./spec/spec_system_helper.rb /^ def with_context$/;" f
969
+ write ./lib/file_wrapper.rb /^ def write(filepath, contents, flags='w')$/;" f class:FileWrapper
970
+ write_failures ./plugins/xml_tests_report/xml_tests_report.rb /^ def write_failures( results, stream )$/;" f class:XmlTestsReport
971
+ write_footer ./plugins/xml_tests_report/xml_tests_report.rb /^ def write_footer( stream )$/;" f class:XmlTestsReport
972
+ write_header ./plugins/xml_tests_report/xml_tests_report.rb /^ def write_header( stream )$/;" f class:XmlTestsReport
973
+ write_results ./plugins/xml_tests_report/xml_tests_report.rb /^ def write_results( results, stream )$/;" f class:XmlTestsReport
974
+ write_shallow_includes_list ./lib/preprocessinator_includes_handler.rb /^ def write_shallow_includes_list(filepath, list)$/;" f class:PreprocessinatorIncludesHandler
975
+ write_statistics ./plugins/xml_tests_report/xml_tests_report.rb /^ def write_statistics( counts, stream )$/;" f class:XmlTestsReport
976
+ write_tests ./plugins/xml_tests_report/xml_tests_report.rb /^ def write_tests( results, stream, tag )$/;" f class:XmlTestsReport
977
+ write_warning_log ./plugins/warnings_report/warnings_report.rb /^ def write_warning_log( context, output )$/;" f class:WarningsReport