ceedling 0.13.0 → 0.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Gemfile +1 -1
- data/Gemfile.lock +18 -14
- data/README.md +6 -4
- data/assets/project_as_gem.yml +1 -1
- data/assets/rakefile_as_gem.rb +2 -0
- data/assets/rakefile_with_guts.rb +3 -1
- data/ceedling.gemspec +1 -0
- data/examples/blinky/rakefile.rb +2 -2
- data/examples/temp_sensor/rakefile.rb +1 -1
- data/examples/temp_sensor/src/TemperatureFilter.c +1 -2
- data/examples/temp_sensor/test/TestTemperatureCalculator.c +1 -1
- data/examples/temp_sensor/test/TestTemperatureFilter.c +12 -2
- data/lib/ceedling.rb +94 -22
- data/lib/{build_invoker_utils.rb → ceedling/build_invoker_utils.rb} +27 -27
- data/lib/{cacheinator.rb → ceedling/cacheinator.rb} +42 -42
- data/lib/{cacheinator_helper.rb → ceedling/cacheinator_helper.rb} +12 -12
- data/lib/{cmock_builder.rb → ceedling/cmock_builder.rb} +15 -15
- data/lib/{configurator.rb → ceedling/configurator.rb} +333 -329
- data/lib/{configurator_builder.rb → ceedling/configurator_builder.rb} +437 -437
- data/lib/{configurator_plugins.rb → ceedling/configurator_plugins.rb} +124 -124
- data/lib/{configurator_setup.rb → ceedling/configurator_setup.rb} +124 -124
- data/lib/{configurator_validator.rb → ceedling/configurator_validator.rb} +184 -184
- data/lib/{constants.rb → ceedling/constants.rb} +20 -17
- data/lib/{defaults.rb → ceedling/defaults.rb} +19 -18
- data/lib/{dependinator.rb → ceedling/dependinator.rb} +92 -92
- data/lib/{erb_wrapper.rb → ceedling/erb_wrapper.rb} +8 -8
- data/lib/{file_finder.rb → ceedling/file_finder.rb} +132 -132
- data/lib/{file_finder_helper.rb → ceedling/file_finder_helper.rb} +54 -54
- data/lib/{file_path_utils.rb → ceedling/file_path_utils.rb} +189 -189
- data/lib/{file_system_utils.rb → ceedling/file_system_utils.rb} +69 -69
- data/lib/{file_system_wrapper.rb → ceedling/file_system_wrapper.rb} +9 -9
- data/lib/{file_wrapper.rb → ceedling/file_wrapper.rb} +79 -79
- data/lib/{flaginator.rb → ceedling/flaginator.rb} +54 -54
- data/lib/{generator.rb → ceedling/generator.rb} +164 -164
- data/lib/{generator_helper.rb → ceedling/generator_helper.rb} +40 -40
- data/lib/{generator_test_results.rb → ceedling/generator_test_results.rb} +86 -89
- data/lib/{generator_test_results_sanity_checker.rb → ceedling/generator_test_results_sanity_checker.rb} +64 -62
- data/lib/{generator_test_runner.rb → ceedling/generator_test_runner.rb} +63 -63
- data/lib/{loginator.rb → ceedling/loginator.rb} +31 -31
- data/lib/{makefile.rb → ceedling/makefile.rb} +0 -0
- data/lib/{objects.yml → ceedling/objects.yml} +0 -0
- data/lib/{par_map.rb → ceedling/par_map.rb} +0 -0
- data/lib/{plugin.rb → ceedling/plugin.rb} +80 -80
- data/lib/{plugin_builder.rb → ceedling/plugin_builder.rb} +52 -52
- data/lib/{plugin_manager.rb → ceedling/plugin_manager.rb} +107 -107
- data/lib/{plugin_manager_helper.rb → ceedling/plugin_manager_helper.rb} +19 -19
- data/lib/{plugin_reportinator.rb → ceedling/plugin_reportinator.rb} +2 -2
- data/lib/{plugin_reportinator_helper.rb → ceedling/plugin_reportinator_helper.rb} +1 -1
- data/lib/{preprocessinator.rb → ceedling/preprocessinator.rb} +43 -43
- data/lib/{preprocessinator_extractor.rb → ceedling/preprocessinator_extractor.rb} +30 -30
- data/lib/{preprocessinator_file_handler.rb → ceedling/preprocessinator_file_handler.rb} +21 -21
- data/lib/{preprocessinator_helper.rb → ceedling/preprocessinator_helper.rb} +46 -46
- data/lib/ceedling/preprocessinator_includes_handler.rb +82 -0
- data/lib/{project_config_manager.rb → ceedling/project_config_manager.rb} +38 -38
- data/lib/{project_file_loader.rb → ceedling/project_file_loader.rb} +64 -64
- data/lib/{rake_utils.rb → ceedling/rake_utils.rb} +17 -17
- data/lib/{rake_wrapper.rb → ceedling/rake_wrapper.rb} +33 -33
- data/lib/{rakefile.rb → ceedling/rakefile.rb} +78 -74
- data/lib/{release_invoker.rb → ceedling/release_invoker.rb} +58 -58
- data/lib/{release_invoker_helper.rb → ceedling/release_invoker_helper.rb} +16 -16
- data/lib/{reportinator.rb → ceedling/reportinator.rb} +9 -9
- data/lib/{rules_cmock.rake → ceedling/rules_cmock.rake} +9 -9
- data/lib/{rules_preprocess.rake → ceedling/rules_preprocess.rake} +26 -26
- data/lib/{rules_release.rake → ceedling/rules_release.rake} +79 -79
- data/lib/{rules_release_deep_dependencies.rake → ceedling/rules_release_deep_dependencies.rake} +15 -15
- data/lib/{rules_tests.rake → ceedling/rules_tests.rake} +59 -59
- data/lib/{rules_tests_deep_dependencies.rake → ceedling/rules_tests_deep_dependencies.rake} +15 -15
- data/lib/{setupinator.rb → ceedling/setupinator.rb} +51 -51
- data/lib/{stream_wrapper.rb → ceedling/stream_wrapper.rb} +20 -20
- data/lib/{streaminator.rb → ceedling/streaminator.rb} +40 -41
- data/lib/{streaminator_helper.rb → ceedling/streaminator_helper.rb} +15 -15
- data/lib/{system_utils.rb → ceedling/system_utils.rb} +0 -0
- data/lib/{system_wrapper.rb → ceedling/system_wrapper.rb} +76 -76
- data/lib/{target_loader.rb → ceedling/target_loader.rb} +0 -0
- data/lib/{task_invoker.rb → ceedling/task_invoker.rb} +89 -89
- data/lib/{tasks_base.rake → ceedling/tasks_base.rake} +104 -104
- data/lib/{tasks_filesystem.rake → ceedling/tasks_filesystem.rake} +91 -91
- data/lib/{tasks_release.rake → ceedling/tasks_release.rake} +28 -28
- data/lib/{tasks_release_deep_dependencies.rake → ceedling/tasks_release_deep_dependencies.rake} +9 -9
- data/lib/{tasks_tests.rake → ceedling/tasks_tests.rake} +52 -52
- data/lib/{tasks_tests_deep_dependencies.rake → ceedling/tasks_tests_deep_dependencies.rake} +9 -9
- data/lib/{tasks_vendor.rake → ceedling/tasks_vendor.rake} +36 -36
- data/lib/{test_includes_extractor.rb → ceedling/test_includes_extractor.rb} +81 -81
- data/lib/{test_invoker.rb → ceedling/test_invoker.rb} +97 -97
- data/lib/{test_invoker_helper.rb → ceedling/test_invoker_helper.rb} +28 -28
- data/lib/{tool_executor.rb → ceedling/tool_executor.rb} +215 -212
- data/lib/{tool_executor_helper.rb → ceedling/tool_executor_helper.rb} +115 -115
- data/lib/{verbosinator.rb → ceedling/verbosinator.rb} +10 -10
- data/lib/ceedling/version.rb +1 -1
- data/lib/{yaml_wrapper.rb → ceedling/yaml_wrapper.rb} +17 -16
- data/license.txt +31 -0
- data/plugins/bullseye/lib/bullseye.rb +2 -2
- data/plugins/gcov/gcov.rb +2 -2
- data/plugins/module_generator/lib/module_generator.rb +4 -3
- data/plugins/stdout_ide_tests_report/lib/stdout_ide_tests_report.rb +8 -8
- data/plugins/stdout_pretty_tests_report/lib/stdout_pretty_tests_report.rb +3 -3
- data/plugins/teamcity_tests_report/config/teamcity_tests_report.yml +4 -0
- data/plugins/teamcity_tests_report/lib/teamcity_tests_report.rb +57 -0
- data/plugins/xml_tests_report/xml_tests_report.rb +4 -4
- data/release/version.info +1 -1
- data/spec/ceedling_spec.rb +154 -0
- data/spec/par_map_spec.rb +1 -1
- data/spec/preprocessinator_extractor_spec.rb +26 -27
- data/spec/preprocessinator_includes_handler_spec.rb +175 -0
- data/spec/spec_helper.rb +8 -27
- data/test_graveyard/integration/paths_test.rb +2 -2
- data/test_graveyard/unit/busted/configurator_builder_test.rb +2 -2
- data/test_graveyard/unit/busted/configurator_test.rb +1 -1
- data/test_graveyard/unit/busted/configurator_validator_test.rb +1 -1
- data/test_graveyard/unit/busted/dependinator_test.rb +1 -1
- data/test_graveyard/unit/busted/file_finder_helper_test.rb +1 -1
- data/test_graveyard/unit/busted/file_finder_test.rb +1 -1
- data/test_graveyard/unit/busted/file_path_utils_test.rb +1 -1
- data/test_graveyard/unit/busted/file_system_utils_test.rb +1 -1
- data/test_graveyard/unit/busted/generator_test.rb +1 -1
- data/test_graveyard/unit/busted/generator_test_results_test.rb +1 -1
- data/test_graveyard/unit/busted/generator_test_runner_test.rb +1 -1
- data/test_graveyard/unit/busted/preprocessinator_file_handler_test.rb +1 -1
- data/test_graveyard/unit/busted/preprocessinator_helper_test.rb +1 -1
- data/test_graveyard/unit/busted/preprocessinator_includes_handler_test.rb +1 -1
- data/test_graveyard/unit/busted/preprocessinator_test.rb +1 -1
- data/test_graveyard/unit/busted/project_file_loader_test.rb +1 -1
- data/test_graveyard/unit/busted/setupinator_test.rb +1 -1
- data/test_graveyard/unit/busted/streaminator_test.rb +2 -2
- data/test_graveyard/unit/busted/task_invoker_test.rb +1 -1
- data/test_graveyard/unit/busted/test_includes_extractor_test.rb +1 -1
- data/test_graveyard/unit/busted/test_invoker_helper_test.rb +1 -1
- data/test_graveyard/unit/busted/test_invoker_test.rb +1 -1
- data/test_graveyard/unit/busted/tool_executor_helper_test.rb +1 -1
- data/test_graveyard/unit/busted/tool_executor_test.rb +1 -1
- data/test_graveyard/unit/busted/verbosinator_test.rb +1 -1
- data/test_graveyard/unit/preprocessinator_extractor_test.rb +1 -1
- data/vendor/c_exception/Gemfile +4 -0
- data/vendor/c_exception/lib/CException.h +1 -1
- data/vendor/c_exception/test/TestException.c +25 -14
- data/vendor/c_exception/test/TestException_Runner.c +74 -57
- data/vendor/cmock/Gemfile +11 -0
- data/vendor/cmock/lib/cmock_generator.rb +13 -12
- data/vendor/cmock/lib/cmock_generator_plugin_ignore_arg.rb +44 -0
- data/vendor/cmock/lib/cmock_generator_plugin_return_thru_ptr.rb +74 -0
- data/vendor/cmock/lib/cmock_generator_utils.rb +67 -42
- data/vendor/cmock/src/cmock.c +20 -30
- data/vendor/cmock/src/cmock.h +1 -0
- data/vendor/cmock/src/cmock_internals.h +43 -0
- data/vendor/cmock/test/c/TestCMockC.c +79 -36
- data/vendor/cmock/test/c/TestCMockC_Runner.c +2 -0
- data/vendor/cmock/test/spec/cmock_file_writer_spec.rb +21 -1
- data/vendor/cmock/test/spec/cmock_generator_plugin_array_spec.rb +52 -0
- data/vendor/cmock/test/system/test_interactions/all_plugins_coexist.yml +2 -0
- data/vendor/cmock/test/system/test_interactions/return_thru_ptr_ignore_arg.yml +235 -0
- data/vendor/cmock/test/test_helper.rb +10 -5
- data/vendor/cmock/test/unit/cmock_generator_main_test.rb +38 -0
- data/vendor/cmock/test/unit/cmock_generator_plugin_ignore_arg_test.rb +116 -0
- data/vendor/cmock/test/unit/cmock_generator_plugin_return_thru_ptr_test.rb +134 -0
- data/vendor/cmock/test/unit/cmock_generator_utils_test.rb +58 -33
- data/vendor/cmock/vendor/c_exception/docs/CExceptionSummary.odt +0 -0
- data/vendor/cmock/vendor/c_exception/docs/CExceptionSummary.pdf +0 -0
- data/vendor/cmock/vendor/c_exception/docs/license.txt +30 -0
- data/vendor/cmock/vendor/c_exception/docs/readme.txt +236 -0
- data/vendor/cmock/vendor/c_exception/lib/CException.c +39 -0
- data/vendor/cmock/vendor/c_exception/lib/CException.h +70 -0
- data/vendor/cmock/vendor/c_exception/makefile +24 -0
- data/vendor/cmock/vendor/c_exception/rakefile.rb +41 -0
- data/vendor/cmock/vendor/c_exception/release/build.info +2 -0
- data/vendor/cmock/vendor/c_exception/release/version.info +2 -0
- data/vendor/cmock/vendor/c_exception/test/CExceptionConfig.h +27 -0
- data/vendor/cmock/vendor/c_exception/test/TestException.c +291 -0
- data/vendor/cmock/vendor/c_exception/test/TestException_Runner.c +62 -0
- data/vendor/cmock/vendor/unity/auto/colour_prompt.rb +94 -0
- data/vendor/cmock/vendor/unity/auto/colour_reporter.rb +39 -0
- data/vendor/cmock/vendor/unity/auto/generate_config.yml +36 -0
- data/vendor/cmock/vendor/unity/auto/generate_module.rb +202 -0
- data/vendor/cmock/vendor/unity/auto/generate_test_runner.rb +313 -0
- data/vendor/cmock/vendor/unity/auto/test_file_filter.rb +23 -0
- data/vendor/cmock/vendor/unity/auto/unity_test_summary.rb +139 -0
- data/vendor/cmock/vendor/unity/docs/Unity Summary.odt +0 -0
- data/vendor/cmock/vendor/unity/docs/Unity Summary.pdf +0 -0
- data/vendor/cmock/vendor/unity/docs/Unity Summary.txt +217 -0
- data/vendor/cmock/vendor/unity/docs/license.txt +31 -0
- data/vendor/cmock/vendor/unity/examples/helper/UnityHelper.c +10 -0
- data/vendor/cmock/vendor/unity/examples/helper/UnityHelper.h +12 -0
- data/vendor/cmock/vendor/unity/examples/makefile +40 -0
- data/vendor/cmock/vendor/unity/examples/rakefile.rb +32 -0
- data/vendor/cmock/vendor/unity/examples/rakefile_helper.rb +256 -0
- data/vendor/cmock/vendor/unity/examples/readme.txt +18 -0
- data/vendor/cmock/vendor/unity/examples/src/ProductionCode.c +24 -0
- data/vendor/cmock/vendor/unity/examples/src/ProductionCode.h +3 -0
- data/vendor/cmock/vendor/unity/examples/src/ProductionCode2.c +9 -0
- data/vendor/cmock/vendor/unity/examples/src/ProductionCode2.h +2 -0
- data/vendor/cmock/vendor/unity/examples/test/TestProductionCode.c +62 -0
- data/vendor/cmock/vendor/unity/examples/test/TestProductionCode2.c +31 -0
- data/vendor/cmock/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +46 -0
- data/vendor/cmock/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +50 -0
- data/vendor/{unity → cmock/vendor/unity}/extras/fixture/build/MakefileWorker.mk +0 -0
- data/vendor/{unity → cmock/vendor/unity}/extras/fixture/build/filterGcov.sh +0 -0
- data/vendor/cmock/vendor/unity/extras/fixture/rakefile.rb +37 -0
- data/vendor/cmock/vendor/unity/extras/fixture/rakefile_helper.rb +178 -0
- data/vendor/cmock/vendor/unity/extras/fixture/readme.txt +9 -0
- data/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture.c +381 -0
- data/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture.h +81 -0
- data/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture_internals.h +44 -0
- data/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +16 -0
- data/vendor/cmock/vendor/unity/extras/fixture/test/main/AllTests.c +21 -0
- data/vendor/cmock/vendor/unity/extras/fixture/test/testunity_fixture.c +39 -0
- data/vendor/cmock/vendor/unity/extras/fixture/test/unity_fixture_Test.c +321 -0
- data/vendor/cmock/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +40 -0
- data/vendor/cmock/vendor/unity/extras/fixture/test/unity_output_Spy.c +56 -0
- data/vendor/cmock/vendor/unity/extras/fixture/test/unity_output_Spy.h +17 -0
- data/vendor/cmock/vendor/unity/makefile +35 -0
- data/vendor/cmock/vendor/unity/rakefile.rb +48 -0
- data/vendor/cmock/vendor/unity/rakefile_helper.rb +240 -0
- data/vendor/cmock/vendor/unity/release/build.info +2 -0
- data/vendor/cmock/vendor/unity/release/version.info +2 -0
- data/vendor/cmock/vendor/unity/src/unity.c +979 -0
- data/vendor/cmock/vendor/unity/src/unity.h +232 -0
- data/vendor/cmock/vendor/unity/src/unity_internals.h +424 -0
- data/vendor/cmock/vendor/unity/targets/gcc.yml +43 -0
- data/vendor/cmock/vendor/unity/targets/gcc_64.yml +44 -0
- data/vendor/cmock/vendor/unity/targets/hitech_picc18.yml +101 -0
- data/vendor/cmock/vendor/unity/targets/iar_arm_v4.yml +89 -0
- data/vendor/cmock/vendor/unity/targets/iar_arm_v5.yml +79 -0
- data/vendor/cmock/vendor/unity/targets/iar_arm_v5_3.yml +79 -0
- data/vendor/cmock/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +93 -0
- data/vendor/cmock/vendor/unity/targets/iar_cortexm3_v5.yml +83 -0
- data/vendor/cmock/vendor/unity/targets/iar_msp430.yml +94 -0
- data/vendor/cmock/vendor/unity/targets/iar_sh2a_v6.yml +85 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_cmd.c +54 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_def.c +50 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_cmd.c +76 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_def.c +72 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_new1.c +85 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_new2.c +85 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_param.c +73 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_run1.c +85 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_run2.c +85 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_yaml.c +86 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_new1.c +60 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_new2.c +63 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_param.c +51 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_run1.c +60 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_run2.c +63 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_yaml.c +64 -0
- data/vendor/cmock/vendor/unity/test/test_generate_test_runner.rb +94 -0
- data/vendor/cmock/vendor/unity/test/testdata/mocksample.c +51 -0
- data/vendor/cmock/vendor/unity/test/testdata/sample.yml +9 -0
- data/vendor/cmock/vendor/unity/test/testdata/testsample.c +51 -0
- data/vendor/cmock/vendor/unity/test/testparameterized.c +101 -0
- data/vendor/cmock/vendor/unity/test/testunity.c +2024 -0
- data/vendor/unity/Gemfile +4 -0
- data/vendor/unity/auto/generate_test_runner.rb +6 -3
- data/vendor/unity/examples/makefile +2 -2
- data/vendor/unity/examples/rakefile.rb +13 -2
- data/vendor/unity/extras/fixture/rakefile.rb +1 -1
- data/vendor/unity/extras/fixture/rakefile_helper.rb +4 -3
- data/vendor/unity/extras/fixture/src/unity_fixture.c +15 -12
- data/vendor/unity/extras/fixture/src/unity_fixture.h +5 -5
- data/vendor/unity/extras/fixture/src/unity_fixture_internals.h +1 -1
- data/vendor/unity/extras/fixture/test/unity_fixture_Test.c +6 -3
- data/vendor/unity/makefile +2 -2
- data/vendor/unity/src/unity.c +183 -16
- data/vendor/unity/src/unity.h +18 -5
- data/vendor/unity/src/unity_internals.h +57 -23
- data/vendor/unity/targets/gcc_64.yml +45 -0
- data/vendor/unity/test/testunity.c +436 -28
- metadata +200 -137
- data/ceedling-0.13.0.rc4.gem +0 -0
- data/ceedling.sublime-project +0 -8
- data/ceedling.sublime-workspace +0 -365
- data/lib/preprocessinator_includes_handler.rb +0 -55
- data/tags +0 -977
- data/vendor/cmock/vendor/hardmock/CHANGES +0 -78
- data/vendor/cmock/vendor/hardmock/LICENSE +0 -7
- data/vendor/cmock/vendor/hardmock/README +0 -70
- data/vendor/cmock/vendor/hardmock/Rakefile +0 -8
- data/vendor/cmock/vendor/hardmock/config/environment.rb +0 -12
- data/vendor/cmock/vendor/hardmock/lib/assert_error.rb +0 -23
- data/vendor/cmock/vendor/hardmock/lib/extend_test_unit.rb +0 -14
- data/vendor/cmock/vendor/hardmock/lib/hardmock.rb +0 -86
- data/vendor/cmock/vendor/hardmock/lib/hardmock/errors.rb +0 -22
- data/vendor/cmock/vendor/hardmock/lib/hardmock/expectation.rb +0 -229
- data/vendor/cmock/vendor/hardmock/lib/hardmock/expectation_builder.rb +0 -9
- data/vendor/cmock/vendor/hardmock/lib/hardmock/expector.rb +0 -26
- data/vendor/cmock/vendor/hardmock/lib/hardmock/method_cleanout.rb +0 -33
- data/vendor/cmock/vendor/hardmock/lib/hardmock/mock.rb +0 -180
- data/vendor/cmock/vendor/hardmock/lib/hardmock/mock_control.rb +0 -53
- data/vendor/cmock/vendor/hardmock/lib/hardmock/stubbing.rb +0 -210
- data/vendor/cmock/vendor/hardmock/lib/hardmock/trapper.rb +0 -31
- data/vendor/cmock/vendor/hardmock/lib/hardmock/utils.rb +0 -9
- data/vendor/cmock/vendor/hardmock/lib/test_unit_before_after.rb +0 -169
- data/vendor/cmock/vendor/hardmock/rake_tasks/rdoc.rake +0 -19
- data/vendor/cmock/vendor/hardmock/rake_tasks/rdoc_options.rb +0 -4
- data/vendor/cmock/vendor/hardmock/rake_tasks/test.rake +0 -22
- data/vendor/cmock/vendor/hardmock/test/functional/assert_error_test.rb +0 -52
- data/vendor/cmock/vendor/hardmock/test/functional/auto_verify_test.rb +0 -178
- data/vendor/cmock/vendor/hardmock/test/functional/direct_mock_usage_test.rb +0 -396
- data/vendor/cmock/vendor/hardmock/test/functional/hardmock_test.rb +0 -434
- data/vendor/cmock/vendor/hardmock/test/functional/stubbing_test.rb +0 -479
- data/vendor/cmock/vendor/hardmock/test/test_helper.rb +0 -43
- data/vendor/cmock/vendor/hardmock/test/unit/expectation_builder_test.rb +0 -19
- data/vendor/cmock/vendor/hardmock/test/unit/expectation_test.rb +0 -372
- data/vendor/cmock/vendor/hardmock/test/unit/expector_test.rb +0 -57
- data/vendor/cmock/vendor/hardmock/test/unit/method_cleanout_test.rb +0 -36
- data/vendor/cmock/vendor/hardmock/test/unit/mock_control_test.rb +0 -175
- data/vendor/cmock/vendor/hardmock/test/unit/mock_test.rb +0 -279
- data/vendor/cmock/vendor/hardmock/test/unit/test_unit_before_after_test.rb +0 -452
- data/vendor/cmock/vendor/hardmock/test/unit/trapper_test.rb +0 -62
- data/vendor/cmock/vendor/hardmock/test/unit/verify_error_test.rb +0 -40
data/ceedling-0.13.0.rc4.gem
DELETED
|
Binary file
|
data/ceedling.sublime-project
DELETED
data/ceedling.sublime-workspace
DELETED
|
@@ -1,365 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"auto_complete":
|
|
3
|
-
{
|
|
4
|
-
"selected_items":
|
|
5
|
-
[
|
|
6
|
-
]
|
|
7
|
-
},
|
|
8
|
-
"buffers":
|
|
9
|
-
[
|
|
10
|
-
{
|
|
11
|
-
"file": "spec/uncatagorized_specs_spec.rb",
|
|
12
|
-
"settings":
|
|
13
|
-
{
|
|
14
|
-
"buffer_size": 190,
|
|
15
|
-
"line_ending": "Unix"
|
|
16
|
-
}
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"file": "lib/configurator.rb",
|
|
20
|
-
"settings":
|
|
21
|
-
{
|
|
22
|
-
"buffer_size": 12191,
|
|
23
|
-
"line_ending": "Windows"
|
|
24
|
-
}
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
"file": "test_graveyard/unit/busted/configurator_test.rb",
|
|
28
|
-
"settings":
|
|
29
|
-
{
|
|
30
|
-
"buffer_size": 8539,
|
|
31
|
-
"line_ending": "Windows"
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
"file": "spec/spec_helper.rb",
|
|
36
|
-
"settings":
|
|
37
|
-
{
|
|
38
|
-
"buffer_size": 1081,
|
|
39
|
-
"line_ending": "Unix"
|
|
40
|
-
}
|
|
41
|
-
},
|
|
42
|
-
{
|
|
43
|
-
"file": "spec/configurator_spec.rb",
|
|
44
|
-
"settings":
|
|
45
|
-
{
|
|
46
|
-
"buffer_size": 249,
|
|
47
|
-
"line_ending": "Unix"
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
],
|
|
51
|
-
"build_system": "",
|
|
52
|
-
"command_palette":
|
|
53
|
-
{
|
|
54
|
-
"height": 0.0,
|
|
55
|
-
"selected_items":
|
|
56
|
-
[
|
|
57
|
-
],
|
|
58
|
-
"width": 0.0
|
|
59
|
-
},
|
|
60
|
-
"console":
|
|
61
|
-
{
|
|
62
|
-
"height": 0.0
|
|
63
|
-
},
|
|
64
|
-
"distraction_free":
|
|
65
|
-
{
|
|
66
|
-
"menu_visible": true,
|
|
67
|
-
"show_minimap": false,
|
|
68
|
-
"show_open_files": false,
|
|
69
|
-
"show_tabs": false,
|
|
70
|
-
"side_bar_visible": false,
|
|
71
|
-
"status_bar_visible": false
|
|
72
|
-
},
|
|
73
|
-
"file_history":
|
|
74
|
-
[
|
|
75
|
-
"/Users/johnvanenk/Development/AO/github_ceedling/spec/configurator_builder_spec.rb",
|
|
76
|
-
"/Users/johnvanenk/Development/AO/github_ceedling/test_graveyard/unit/busted/configurator_helper_test.rb",
|
|
77
|
-
"/Users/johnvanenk/Development/AO/github_ceedling/spec/preprocessinator_extractor_spec.rb",
|
|
78
|
-
"/Users/johnvanenk/Development/AO/github_ceedling/lib/configurator_builder.rb",
|
|
79
|
-
"/Users/johnvanenk/Development/AO/github_ceedling/spec/configuratior_helper_spec.rb",
|
|
80
|
-
"/Users/johnvanenk/Development/AO/github_ceedling/test_graveyard/unit/busted/configurator_builder_test.rb",
|
|
81
|
-
"/Users/johnvanenk/Development/AO/github_ceedling/test/unit/preprocessinator_extractor_test.rb",
|
|
82
|
-
"/Users/johnvanenk/Development/AO/github_ceedling/Gemfile",
|
|
83
|
-
"/Users/johnvanenk/Development/AO/github_ceedling/test/integration/paths_test.rb",
|
|
84
|
-
"/Users/johnvanenk/Development/AO/github_ceedling/rakefile.rb",
|
|
85
|
-
"/Users/johnvanenk/Development/AO/github_ceedling/test/test_helper.rb"
|
|
86
|
-
],
|
|
87
|
-
"find":
|
|
88
|
-
{
|
|
89
|
-
"height": 35.0
|
|
90
|
-
},
|
|
91
|
-
"find_in_files":
|
|
92
|
-
{
|
|
93
|
-
"height": 0.0,
|
|
94
|
-
"where_history":
|
|
95
|
-
[
|
|
96
|
-
]
|
|
97
|
-
},
|
|
98
|
-
"find_state":
|
|
99
|
-
{
|
|
100
|
-
"case_sensitive": false,
|
|
101
|
-
"find_history":
|
|
102
|
-
[
|
|
103
|
-
"standardize_paths",
|
|
104
|
-
"populate_tool_names"
|
|
105
|
-
],
|
|
106
|
-
"highlight": true,
|
|
107
|
-
"in_selection": false,
|
|
108
|
-
"preserve_case": false,
|
|
109
|
-
"regex": false,
|
|
110
|
-
"replace_history":
|
|
111
|
-
[
|
|
112
|
-
],
|
|
113
|
-
"reverse": false,
|
|
114
|
-
"show_context": true,
|
|
115
|
-
"use_buffer2": true,
|
|
116
|
-
"whole_word": false,
|
|
117
|
-
"wrap": true
|
|
118
|
-
},
|
|
119
|
-
"groups":
|
|
120
|
-
[
|
|
121
|
-
{
|
|
122
|
-
"selected": 1,
|
|
123
|
-
"sheets":
|
|
124
|
-
[
|
|
125
|
-
{
|
|
126
|
-
"buffer": 0,
|
|
127
|
-
"file": "spec/uncatagorized_specs_spec.rb",
|
|
128
|
-
"settings":
|
|
129
|
-
{
|
|
130
|
-
"buffer_size": 190,
|
|
131
|
-
"regions":
|
|
132
|
-
{
|
|
133
|
-
},
|
|
134
|
-
"selection":
|
|
135
|
-
[
|
|
136
|
-
[
|
|
137
|
-
190,
|
|
138
|
-
190
|
|
139
|
-
]
|
|
140
|
-
],
|
|
141
|
-
"settings":
|
|
142
|
-
{
|
|
143
|
-
"syntax": "Packages/Ruby/Ruby.tmLanguage"
|
|
144
|
-
},
|
|
145
|
-
"translation.x": 0.0,
|
|
146
|
-
"translation.y": 0.0,
|
|
147
|
-
"zoom_level": 1.0
|
|
148
|
-
},
|
|
149
|
-
"type": "text"
|
|
150
|
-
},
|
|
151
|
-
{
|
|
152
|
-
"buffer": 1,
|
|
153
|
-
"file": "lib/configurator.rb",
|
|
154
|
-
"settings":
|
|
155
|
-
{
|
|
156
|
-
"buffer_size": 12191,
|
|
157
|
-
"regions":
|
|
158
|
-
{
|
|
159
|
-
},
|
|
160
|
-
"selection":
|
|
161
|
-
[
|
|
162
|
-
[
|
|
163
|
-
8639,
|
|
164
|
-
8639
|
|
165
|
-
]
|
|
166
|
-
],
|
|
167
|
-
"settings":
|
|
168
|
-
{
|
|
169
|
-
"syntax": "Packages/Ruby/Ruby.tmLanguage",
|
|
170
|
-
"tab_size": 2,
|
|
171
|
-
"translate_tabs_to_spaces": true
|
|
172
|
-
},
|
|
173
|
-
"translation.x": 0.0,
|
|
174
|
-
"translation.y": 2960.0,
|
|
175
|
-
"zoom_level": 1.0
|
|
176
|
-
},
|
|
177
|
-
"type": "text"
|
|
178
|
-
},
|
|
179
|
-
{
|
|
180
|
-
"buffer": 2,
|
|
181
|
-
"file": "test_graveyard/unit/busted/configurator_test.rb",
|
|
182
|
-
"settings":
|
|
183
|
-
{
|
|
184
|
-
"buffer_size": 8539,
|
|
185
|
-
"regions":
|
|
186
|
-
{
|
|
187
|
-
},
|
|
188
|
-
"selection":
|
|
189
|
-
[
|
|
190
|
-
[
|
|
191
|
-
878,
|
|
192
|
-
899
|
|
193
|
-
]
|
|
194
|
-
],
|
|
195
|
-
"settings":
|
|
196
|
-
{
|
|
197
|
-
"syntax": "Packages/Ruby/Ruby.tmLanguage",
|
|
198
|
-
"tab_size": 2,
|
|
199
|
-
"translate_tabs_to_spaces": true
|
|
200
|
-
},
|
|
201
|
-
"translation.x": 0.0,
|
|
202
|
-
"translation.y": 0.0,
|
|
203
|
-
"zoom_level": 1.0
|
|
204
|
-
},
|
|
205
|
-
"type": "text"
|
|
206
|
-
}
|
|
207
|
-
]
|
|
208
|
-
},
|
|
209
|
-
{
|
|
210
|
-
"selected": 0,
|
|
211
|
-
"sheets":
|
|
212
|
-
[
|
|
213
|
-
{
|
|
214
|
-
"buffer": 3,
|
|
215
|
-
"file": "spec/spec_helper.rb",
|
|
216
|
-
"settings":
|
|
217
|
-
{
|
|
218
|
-
"buffer_size": 1081,
|
|
219
|
-
"regions":
|
|
220
|
-
{
|
|
221
|
-
},
|
|
222
|
-
"selection":
|
|
223
|
-
[
|
|
224
|
-
[
|
|
225
|
-
0,
|
|
226
|
-
0
|
|
227
|
-
]
|
|
228
|
-
],
|
|
229
|
-
"settings":
|
|
230
|
-
{
|
|
231
|
-
"syntax": "Packages/Ruby/Ruby.tmLanguage"
|
|
232
|
-
},
|
|
233
|
-
"translation.x": 0.0,
|
|
234
|
-
"translation.y": 0.0,
|
|
235
|
-
"zoom_level": 1.0
|
|
236
|
-
},
|
|
237
|
-
"type": "text"
|
|
238
|
-
},
|
|
239
|
-
{
|
|
240
|
-
"buffer": 4,
|
|
241
|
-
"file": "spec/configurator_spec.rb",
|
|
242
|
-
"settings":
|
|
243
|
-
{
|
|
244
|
-
"buffer_size": 249,
|
|
245
|
-
"regions":
|
|
246
|
-
{
|
|
247
|
-
},
|
|
248
|
-
"selection":
|
|
249
|
-
[
|
|
250
|
-
[
|
|
251
|
-
249,
|
|
252
|
-
249
|
|
253
|
-
]
|
|
254
|
-
],
|
|
255
|
-
"settings":
|
|
256
|
-
{
|
|
257
|
-
"syntax": "Packages/Ruby/Ruby.tmLanguage"
|
|
258
|
-
},
|
|
259
|
-
"translation.x": 0.0,
|
|
260
|
-
"translation.y": 0.0,
|
|
261
|
-
"zoom_level": 1.0
|
|
262
|
-
},
|
|
263
|
-
"type": "text"
|
|
264
|
-
}
|
|
265
|
-
]
|
|
266
|
-
}
|
|
267
|
-
],
|
|
268
|
-
"incremental_find":
|
|
269
|
-
{
|
|
270
|
-
"height": 0.0
|
|
271
|
-
},
|
|
272
|
-
"input":
|
|
273
|
-
{
|
|
274
|
-
"height": 31.0
|
|
275
|
-
},
|
|
276
|
-
"layout":
|
|
277
|
-
{
|
|
278
|
-
"cells":
|
|
279
|
-
[
|
|
280
|
-
[
|
|
281
|
-
0,
|
|
282
|
-
0,
|
|
283
|
-
1,
|
|
284
|
-
1
|
|
285
|
-
],
|
|
286
|
-
[
|
|
287
|
-
1,
|
|
288
|
-
0,
|
|
289
|
-
2,
|
|
290
|
-
1
|
|
291
|
-
]
|
|
292
|
-
],
|
|
293
|
-
"cols":
|
|
294
|
-
[
|
|
295
|
-
0.0,
|
|
296
|
-
0.5,
|
|
297
|
-
1.0
|
|
298
|
-
],
|
|
299
|
-
"rows":
|
|
300
|
-
[
|
|
301
|
-
0.0,
|
|
302
|
-
1.0
|
|
303
|
-
]
|
|
304
|
-
},
|
|
305
|
-
"menu_visible": true,
|
|
306
|
-
"output.exec":
|
|
307
|
-
{
|
|
308
|
-
"height": 100.0
|
|
309
|
-
},
|
|
310
|
-
"replace":
|
|
311
|
-
{
|
|
312
|
-
"height": 0.0
|
|
313
|
-
},
|
|
314
|
-
"save_all_on_build": true,
|
|
315
|
-
"select_file":
|
|
316
|
-
{
|
|
317
|
-
"height": 0.0,
|
|
318
|
-
"selected_items":
|
|
319
|
-
[
|
|
320
|
-
[
|
|
321
|
-
"configur",
|
|
322
|
-
"lib/configurator.rb"
|
|
323
|
-
],
|
|
324
|
-
[
|
|
325
|
-
"configurator_test",
|
|
326
|
-
"test_graveyard/unit/busted/configurator_test.rb"
|
|
327
|
-
],
|
|
328
|
-
[
|
|
329
|
-
"confihel",
|
|
330
|
-
"test_graveyard/unit/busted/configurator_helper_test.rb"
|
|
331
|
-
],
|
|
332
|
-
[
|
|
333
|
-
"confi",
|
|
334
|
-
"lib/configurator_builder.rb"
|
|
335
|
-
],
|
|
336
|
-
[
|
|
337
|
-
"preproces",
|
|
338
|
-
"spec/preprocessinator_extractor_spec.rb"
|
|
339
|
-
],
|
|
340
|
-
[
|
|
341
|
-
"spec",
|
|
342
|
-
"spec/spec_helper.rb"
|
|
343
|
-
],
|
|
344
|
-
[
|
|
345
|
-
"rakefile.rb",
|
|
346
|
-
"/Users/johnvanenk/Development/AO/github_ceedling/rakefile.rb"
|
|
347
|
-
]
|
|
348
|
-
],
|
|
349
|
-
"width": 0.0
|
|
350
|
-
},
|
|
351
|
-
"select_project":
|
|
352
|
-
{
|
|
353
|
-
"height": 0.0,
|
|
354
|
-
"selected_items":
|
|
355
|
-
[
|
|
356
|
-
],
|
|
357
|
-
"width": 0.0
|
|
358
|
-
},
|
|
359
|
-
"show_minimap": false,
|
|
360
|
-
"show_open_files": false,
|
|
361
|
-
"show_tabs": true,
|
|
362
|
-
"side_bar_visible": true,
|
|
363
|
-
"side_bar_width": 224.0,
|
|
364
|
-
"status_bar_visible": true
|
|
365
|
-
}
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
class PreprocessinatorIncludesHandler
|
|
4
|
-
|
|
5
|
-
constructor :configurator, :tool_executor, :task_invoker, :file_path_utils, :yaml_wrapper, :file_wrapper
|
|
6
|
-
|
|
7
|
-
# shallow includes: only those headers a source file explicitly includes
|
|
8
|
-
|
|
9
|
-
def invoke_shallow_includes_list(filepath)
|
|
10
|
-
@task_invoker.invoke_test_shallow_include_lists( [@file_path_utils.form_preprocessed_includes_list_filepath(filepath)] )
|
|
11
|
-
end
|
|
12
|
-
|
|
13
|
-
# ask the preprocessor for a make-style dependency rule of only the headers the source file immediately includes
|
|
14
|
-
def form_shallow_dependencies_rule(filepath)
|
|
15
|
-
# change filename (prefix of '_') to prevent preprocessor from finding include files in temp directory containing file it's scanning
|
|
16
|
-
temp_filepath = @file_path_utils.form_temp_path(filepath, '_')
|
|
17
|
-
|
|
18
|
-
# read the file and replace all include statements with a decorated version
|
|
19
|
-
# (decorating the names creates file names that don't exist, thus preventing the preprocessor
|
|
20
|
-
# from snaking out and discovering the entire include path that winds through the code)
|
|
21
|
-
contents = @file_wrapper.read(filepath)
|
|
22
|
-
contents.gsub!( /#include\s+\"\s*(\S+)\s*\"/, "#include \"\\1\"\n#include \"@@@@\\1\"" )
|
|
23
|
-
@file_wrapper.write( temp_filepath, contents )
|
|
24
|
-
|
|
25
|
-
# extract the make-style dependency rule telling the preprocessor to
|
|
26
|
-
# ignore the fact that it can't find the included files
|
|
27
|
-
command = @tool_executor.build_command_line(@configurator.tools_test_includes_preprocessor, temp_filepath)
|
|
28
|
-
shell_result = @tool_executor.exec(command[:line], command[:options])
|
|
29
|
-
|
|
30
|
-
return shell_result[:output]
|
|
31
|
-
end
|
|
32
|
-
|
|
33
|
-
# headers only; ignore any crazy .c includes
|
|
34
|
-
def extract_shallow_includes(make_rule)
|
|
35
|
-
list = []
|
|
36
|
-
header_extension = @configurator.extension_header
|
|
37
|
-
|
|
38
|
-
headers = make_rule.scan(/(\S+#{'\\'+header_extension})/).flatten # escape slashes before dot file extension
|
|
39
|
-
headers.uniq!
|
|
40
|
-
headers.map! { |header| header.sub(/(@@@@)|(.+\/)/, '') }
|
|
41
|
-
headers.sort!
|
|
42
|
-
|
|
43
|
-
headers.each_with_index do |header, index|
|
|
44
|
-
break if (headers.size == (index-1))
|
|
45
|
-
list << header if (header == headers[index + 1])
|
|
46
|
-
end
|
|
47
|
-
|
|
48
|
-
return list
|
|
49
|
-
end
|
|
50
|
-
|
|
51
|
-
def write_shallow_includes_list(filepath, list)
|
|
52
|
-
@yaml_wrapper.dump(filepath, list)
|
|
53
|
-
end
|
|
54
|
-
|
|
55
|
-
end
|
data/tags
DELETED
|
@@ -1,977 +0,0 @@
|
|
|
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
|