--- !ruby/object:Gem::Specification name: ceedling version: !ruby/object:Gem::Version version: 1.0.1 platform: ruby authors: - Mark VanderVoord - Michael Karlesky - Greg Williams autorequire: bindir: bin cert_chain: [] date: 2025-01-30 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: thor requirement: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '1.3' type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '1.3' - !ruby/object:Gem::Dependency name: rake requirement: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '12' - - "<" - !ruby/object:Gem::Version version: '14' type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '12' - - "<" - !ruby/object:Gem::Version version: '14' - !ruby/object:Gem::Dependency name: deep_merge requirement: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '1.2' type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '1.2' - !ruby/object:Gem::Dependency name: diy requirement: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '1.1' type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '1.1' - !ruby/object:Gem::Dependency name: constructor requirement: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '2' type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '2' - !ruby/object:Gem::Dependency name: unicode-display_width requirement: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '3.1' type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '3.1' description: "Ceedling is a build automation tool that helps you create and run C unit test suites.\n\nCeedling provides two core functions: \n [1] It packages up several tools including the C unit test framework Unity, the mock generation tool CMock, and other features. \n [2] It simplifies tool configuration for embedded or native C toolchains and automates the running and reporting of tests.\n\nCeedling projects are created with a YAML configuration file. A variety of conventions within the tool simplify generating mocks from C files and assembling suites of unit test functions.\n" email: - mark@vandervoord.net - michael@karlesky.net - barney.williams@gmail.com executables: - ceedling extensions: [] extra_rdoc_files: [] files: - GIT_COMMIT_SHA - Gemfile - Gemfile.lock - README.md - Rakefile - assets/ceedling - assets/ceedling.cmd - assets/default_gitignore - assets/example_file.c - assets/example_file.h - assets/example_file_call.c - assets/example_file_call.h - assets/project.yml - assets/test_example_file.c - assets/test_example_file_boom.c - assets/test_example_file_crash.c - assets/test_example_file_success.c - assets/test_example_file_unity_printf.c - assets/test_example_file_verbose.c - assets/test_example_file_with_mock.c - assets/test_example_with_parameterized_tests.c - assets/tests_with_defines/src/adc_hardware.c - assets/tests_with_defines/src/adc_hardware.h - assets/tests_with_defines/src/adc_hardware_configurator.c - assets/tests_with_defines/src/adc_hardware_configurator.h - assets/tests_with_defines/test/test_adc_hardware.c - assets/tests_with_defines/test/test_adc_hardware_special.c - assets/tests_with_preprocessing/src/adc_hardwareA.c - assets/tests_with_preprocessing/src/adc_hardwareA.h - assets/tests_with_preprocessing/src/adc_hardwareB.c - assets/tests_with_preprocessing/src/adc_hardwareB.h - assets/tests_with_preprocessing/src/adc_hardwareC.c - assets/tests_with_preprocessing/src/adc_hardwareC.h - assets/tests_with_preprocessing/src/adc_hardware_configuratorA.h - assets/tests_with_preprocessing/src/adc_hardware_configuratorB.h - assets/tests_with_preprocessing/src/adc_hardware_configuratorC.h - assets/tests_with_preprocessing/test/test_adc_hardwareA.c - assets/tests_with_preprocessing/test/test_adc_hardwareB.c - assets/tests_with_preprocessing/test/test_adc_hardwareC.c - assets/uncovered_example_file.c - bin/actions_wrapper.rb - bin/app_cfg.rb - bin/ceedling - bin/cli.rb - bin/cli_handler.rb - bin/cli_helper.rb - bin/configinator.rb - bin/mixinator.rb - bin/mixins.rb - bin/objects.yml - bin/path_validator.rb - bin/projectinator.rb - bin/versionator.rb - ceedling.gemspec - config/test_environment.rb - docs/BreakingChanges.md - docs/CODE_OF_CONDUCT.md - docs/CONTRIBUTING.md - docs/Ceedling Basic Porting.pdf - docs/Ceedling Managing Release Code.pdf - docs/Ceedling Working with IDEs.pdf - docs/CeedlingPacket.md - docs/CeedlingPullRequestChecklist.md - docs/CeedlingUpgrade.md - docs/Changelog.md - docs/PluginDevelopmentGuide.md - docs/ReleaseNotes.md - docs/SECURITY.md - docs/ThrowTheSwitchCodingStandard.md - examples/temp_sensor/README.md - examples/temp_sensor/mixin/add_gcov.yml - examples/temp_sensor/mixin/add_unity_helper.yml - examples/temp_sensor/project.yml - examples/temp_sensor/src/AdcConductor.c - examples/temp_sensor/src/AdcConductor.h - examples/temp_sensor/src/AdcHardware.c - examples/temp_sensor/src/AdcHardware.h - examples/temp_sensor/src/AdcHardwareConfigurator.c - examples/temp_sensor/src/AdcHardwareConfigurator.h - examples/temp_sensor/src/AdcModel.c - examples/temp_sensor/src/AdcModel.h - examples/temp_sensor/src/AdcTemperatureSensor.c - examples/temp_sensor/src/AdcTemperatureSensor.h - examples/temp_sensor/src/Executor.c - examples/temp_sensor/src/Executor.h - examples/temp_sensor/src/IntrinsicsWrapper.c - examples/temp_sensor/src/IntrinsicsWrapper.h - examples/temp_sensor/src/Main.c - examples/temp_sensor/src/Main.h - examples/temp_sensor/src/Model.c - examples/temp_sensor/src/Model.h - examples/temp_sensor/src/ModelConfig.h - examples/temp_sensor/src/TaskScheduler.c - examples/temp_sensor/src/TaskScheduler.h - examples/temp_sensor/src/TemperatureCalculator.c - examples/temp_sensor/src/TemperatureCalculator.h - examples/temp_sensor/src/TemperatureFilter.c - examples/temp_sensor/src/TemperatureFilter.h - examples/temp_sensor/src/TimerConductor.c - examples/temp_sensor/src/TimerConductor.h - examples/temp_sensor/src/TimerConfigurator.c - examples/temp_sensor/src/TimerConfigurator.h - examples/temp_sensor/src/TimerHardware.c - examples/temp_sensor/src/TimerHardware.h - examples/temp_sensor/src/TimerInterruptConfigurator.c - examples/temp_sensor/src/TimerInterruptConfigurator.h - examples/temp_sensor/src/TimerInterruptHandler.c - examples/temp_sensor/src/TimerInterruptHandler.h - examples/temp_sensor/src/TimerModel.c - examples/temp_sensor/src/TimerModel.h - examples/temp_sensor/src/Types.h - examples/temp_sensor/src/UsartBaudRateRegisterCalculator.c - examples/temp_sensor/src/UsartBaudRateRegisterCalculator.h - examples/temp_sensor/src/UsartConductor.c - examples/temp_sensor/src/UsartConductor.h - examples/temp_sensor/src/UsartConfigurator.c - examples/temp_sensor/src/UsartConfigurator.h - examples/temp_sensor/src/UsartHardware.c - examples/temp_sensor/src/UsartHardware.h - examples/temp_sensor/src/UsartModel.c - examples/temp_sensor/src/UsartModel.h - examples/temp_sensor/src/UsartPutChar.c - examples/temp_sensor/src/UsartPutChar.h - examples/temp_sensor/src/UsartTransmitBufferStatus.c - examples/temp_sensor/src/UsartTransmitBufferStatus.h - examples/temp_sensor/test/TestExecutor.c - examples/temp_sensor/test/TestMain.c - examples/temp_sensor/test/TestModel.c - examples/temp_sensor/test/TestTaskScheduler.c - examples/temp_sensor/test/TestTemperatureCalculator.c - examples/temp_sensor/test/TestTemperatureFilter.c - examples/temp_sensor/test/TestTimerConductor.c - examples/temp_sensor/test/TestTimerHardware.c - examples/temp_sensor/test/TestTimerIntegrated.c - examples/temp_sensor/test/TestTimerModel.c - examples/temp_sensor/test/TestUsartBaudRateRegisterCalculator.c - examples/temp_sensor/test/TestUsartConductor.c - examples/temp_sensor/test/TestUsartHardware.c - examples/temp_sensor/test/TestUsartIntegrated.c - examples/temp_sensor/test/TestUsartModel.c - examples/temp_sensor/test/adc/TestAdcConductor.c - examples/temp_sensor/test/adc/TestAdcHardware.c - examples/temp_sensor/test/adc/TestAdcModel.c - examples/temp_sensor/test/support/UnityHelper.c - examples/temp_sensor/test/support/UnityHelper.h - lib/ceedling.rb - lib/ceedling/application.rb - lib/ceedling/backtrace.gdb - lib/ceedling/build_batchinator.rb - lib/ceedling/cacheinator.rb - lib/ceedling/cacheinator_helper.rb - lib/ceedling/config_matchinator.rb - lib/ceedling/config_walkinator.rb - lib/ceedling/configurator.rb - lib/ceedling/configurator_builder.rb - lib/ceedling/configurator_plugins.rb - lib/ceedling/configurator_setup.rb - lib/ceedling/configurator_validator.rb - lib/ceedling/constants.rb - lib/ceedling/defaults.rb - lib/ceedling/defineinator.rb - lib/ceedling/dependinator.rb - lib/ceedling/encodinator.rb - lib/ceedling/erb_wrapper.rb - lib/ceedling/exceptions.rb - lib/ceedling/file_finder.rb - lib/ceedling/file_finder_helper.rb - lib/ceedling/file_path_collection_utils.rb - lib/ceedling/file_path_utils.rb - lib/ceedling/file_system_wrapper.rb - lib/ceedling/file_wrapper.rb - lib/ceedling/flaginator.rb - lib/ceedling/generator.rb - lib/ceedling/generator_helper.rb - lib/ceedling/generator_mocks.rb - lib/ceedling/generator_test_results.rb - lib/ceedling/generator_test_results_backtrace.rb - lib/ceedling/generator_test_results_sanity_checker.rb - lib/ceedling/generator_test_runner.rb - lib/ceedling/include_pathinator.rb - lib/ceedling/loginator.rb - lib/ceedling/makefile.rb - lib/ceedling/objects.yml - lib/ceedling/parsing_parcels.rb - lib/ceedling/plugin.rb - lib/ceedling/plugin_manager.rb - lib/ceedling/plugin_manager_helper.rb - lib/ceedling/plugin_reportinator.rb - lib/ceedling/plugin_reportinator_helper.rb - lib/ceedling/preprocessinator.rb - lib/ceedling/preprocessinator_extractor.rb - lib/ceedling/preprocessinator_file_handler.rb - lib/ceedling/preprocessinator_includes_handler.rb - lib/ceedling/rake_utils.rb - lib/ceedling/rake_wrapper.rb - lib/ceedling/rakefile.rb - lib/ceedling/release_invoker.rb - lib/ceedling/release_invoker_helper.rb - lib/ceedling/reportinator.rb - lib/ceedling/rules_release.rake - lib/ceedling/rules_tests.rake - lib/ceedling/setupinator.rb - lib/ceedling/stream_wrapper.rb - lib/ceedling/system_utils.rb - lib/ceedling/system_wrapper.rb - lib/ceedling/task_invoker.rb - lib/ceedling/tasks_base.rake - lib/ceedling/tasks_filesystem.rake - lib/ceedling/tasks_release.rake - lib/ceedling/tasks_tests.rake - lib/ceedling/test_context_extractor.rb - lib/ceedling/test_invoker.rb - lib/ceedling/test_invoker_helper.rb - lib/ceedling/test_runner_manager.rb - lib/ceedling/tool_executor.rb - lib/ceedling/tool_executor_helper.rb - lib/ceedling/tool_validator.rb - lib/ceedling/verbosinator.rb - lib/ceedling/yaml_wrapper.rb - lib/version.rb - license.txt - plugins/beep/README.md - plugins/beep/config/defaults.yml - plugins/beep/config/defaults_beep.rb - plugins/beep/lib/beep.rb - plugins/bullseye/README.md - plugins/bullseye/assets/template.erb - plugins/bullseye/bullseye.rake - plugins/bullseye/config/defaults.yml - plugins/bullseye/lib/bullseye.rb - plugins/command_hooks/README.md - plugins/command_hooks/lib/command_hooks.rb - plugins/compile_commands_json_db/README.md - plugins/compile_commands_json_db/lib/compile_commands_json_db.rb - plugins/dependencies/README.md - plugins/dependencies/Rakefile - plugins/dependencies/config/defaults.yml - plugins/dependencies/dependencies.rake - plugins/dependencies/example/boss/project.yml - plugins/dependencies/example/boss/src/boss.c - plugins/dependencies/example/boss/src/boss.h - plugins/dependencies/example/boss/src/main.c - plugins/dependencies/example/boss/test/test_boss.c - plugins/dependencies/example/supervisor/project.yml - plugins/dependencies/example/supervisor/src/supervisor.c - plugins/dependencies/example/supervisor/src/supervisor.h - plugins/dependencies/example/supervisor/test/test_supervisor.c - plugins/dependencies/example/version.tar.gzip - plugins/dependencies/example/workerbees.zip - plugins/dependencies/lib/dependencies.rb - plugins/fff/README.md - plugins/fff/Rakefile - plugins/fff/config/fff.yml - plugins/fff/examples/fff_example/project.yml - plugins/fff/examples/fff_example/src/bar.c - plugins/fff/examples/fff_example/src/bar.h - plugins/fff/examples/fff_example/src/custom_types.h - plugins/fff/examples/fff_example/src/display.c - plugins/fff/examples/fff_example/src/display.h - plugins/fff/examples/fff_example/src/event_processor.c - plugins/fff/examples/fff_example/src/event_processor.h - plugins/fff/examples/fff_example/src/foo.c - plugins/fff/examples/fff_example/src/foo.h - plugins/fff/examples/fff_example/src/subfolder/zzz.c - plugins/fff/examples/fff_example/src/subfolder/zzz.h - plugins/fff/examples/fff_example/test/test_event_processor.c - plugins/fff/examples/fff_example/test/test_foo.c - plugins/fff/lib/fff.rb - plugins/fff/lib/fff_mock_generator.rb - plugins/fff/spec/fff_mock_header_generator_spec.rb - plugins/fff/spec/fff_mock_source_generator_spec.rb - plugins/fff/spec/header_generator.rb - plugins/fff/spec/spec_helper.rb - plugins/fff/src/fff_unity_helper.h - plugins/fff/vendor/fff/LICENSE - plugins/fff/vendor/fff/Makefile - plugins/fff/vendor/fff/README.md - plugins/fff/vendor/fff/buildandtest - plugins/fff/vendor/fff/examples/Makefile - plugins/fff/vendor/fff/examples/driver_testing/Makefile - plugins/fff/vendor/fff/examples/driver_testing/driver.c - plugins/fff/vendor/fff/examples/driver_testing/driver.h - plugins/fff/vendor/fff/examples/driver_testing/driver.test.cpp - plugins/fff/vendor/fff/examples/driver_testing/driver.test.fff.cpp - plugins/fff/vendor/fff/examples/driver_testing/hardware_abstraction.h - plugins/fff/vendor/fff/examples/driver_testing/registers.h - plugins/fff/vendor/fff/examples/embedded_ui/DISPLAY.h - plugins/fff/vendor/fff/examples/embedded_ui/Kata.txt - plugins/fff/vendor/fff/examples/embedded_ui/Makefile - plugins/fff/vendor/fff/examples/embedded_ui/SYSTEM.h - plugins/fff/vendor/fff/examples/embedded_ui/UI.c - plugins/fff/vendor/fff/examples/embedded_ui/UI.h - plugins/fff/vendor/fff/examples/embedded_ui/UI_test_ansic.c - plugins/fff/vendor/fff/examples/embedded_ui/UI_test_cpp.cpp - plugins/fff/vendor/fff/examples/embedded_ui/test_suite_template.c - plugins/fff/vendor/fff/fakegen.rb - plugins/fff/vendor/fff/fff.h - plugins/fff/vendor/fff/gtest/Makefile - plugins/fff/vendor/fff/gtest/gtest-all.cc - plugins/fff/vendor/fff/gtest/gtest-main.cc - plugins/fff/vendor/fff/gtest/gtest.h - plugins/fff/vendor/fff/test/Makefile - plugins/fff/vendor/fff/test/c_test_framework.h - plugins/fff/vendor/fff/test/fff_test_c.c - plugins/fff/vendor/fff/test/fff_test_cpp.cpp - plugins/fff/vendor/fff/test/fff_test_global_c.c - plugins/fff/vendor/fff/test/fff_test_global_cpp.cpp - plugins/fff/vendor/fff/test/global_fakes.c - plugins/fff/vendor/fff/test/global_fakes.h - plugins/fff/vendor/fff/test/test_cases.include - plugins/gcov/README.md - plugins/gcov/config/defaults.yml - plugins/gcov/config/defaults_gcov.rb - plugins/gcov/gcov.rake - plugins/gcov/lib/gcov.rb - plugins/gcov/lib/gcov_constants.rb - plugins/gcov/lib/gcovr_reportinator.rb - plugins/gcov/lib/reportgenerator_reportinator.rb - plugins/gcov/lib/reportinator_helper.rb - plugins/module_generator/README.md - plugins/module_generator/Rakefile - plugins/module_generator/assets/stubby1.h - plugins/module_generator/assets/stubby2.h - plugins/module_generator/config/module_generator.yml - plugins/module_generator/example/project.yml - plugins/module_generator/lib/module_generator.rb - plugins/module_generator/module_generator.rake - plugins/report_build_warnings_log/README.md - plugins/report_build_warnings_log/config/defaults.yml - plugins/report_build_warnings_log/lib/report_build_warnings_log.rb - plugins/report_tests_gtestlike_stdout/README.md - plugins/report_tests_gtestlike_stdout/assets/template.erb - plugins/report_tests_gtestlike_stdout/config/report_tests_gtestlike_stdout.yml - plugins/report_tests_gtestlike_stdout/lib/report_tests_gtestlike_stdout.rb - plugins/report_tests_ide_stdout/README.md - plugins/report_tests_ide_stdout/config/report_tests_ide_stdout.yml - plugins/report_tests_ide_stdout/lib/report_tests_ide_stdout.rb - plugins/report_tests_log_factory/README.md - plugins/report_tests_log_factory/config/defaults.yml - plugins/report_tests_log_factory/lib/cppunit_tests_reporter.rb - plugins/report_tests_log_factory/lib/html_tests_reporter.rb - plugins/report_tests_log_factory/lib/json_tests_reporter.rb - plugins/report_tests_log_factory/lib/junit_tests_reporter.rb - plugins/report_tests_log_factory/lib/report_tests_log_factory.rb - plugins/report_tests_log_factory/lib/tests_reporter.rb - plugins/report_tests_log_factory/sample_html_report.png - plugins/report_tests_pretty_stdout/README.md - plugins/report_tests_pretty_stdout/assets/template.erb - plugins/report_tests_pretty_stdout/config/report_tests_pretty_stdout.yml - plugins/report_tests_pretty_stdout/lib/report_tests_pretty_stdout.rb - plugins/report_tests_raw_output_log/README.md - plugins/report_tests_raw_output_log/lib/report_tests_raw_output_log.rb - plugins/report_tests_teamcity_stdout/README.md - plugins/report_tests_teamcity_stdout/config/defaults.yml - plugins/report_tests_teamcity_stdout/config/report_tests_teamcity_stdout.yml - plugins/report_tests_teamcity_stdout/lib/report_tests_teamcity_stdout.rb - spec/config_walkinator_spec.rb - spec/configurator_builder_spec.rb - spec/configurator_helper_spec.rb - spec/configurator_spec.rb - spec/file_finder_helper_spec.rb - spec/gcov/gcov_deployment_spec.rb - spec/gcov/gcov_test_cases_spec.rb - spec/generator_test_results_sanity_checker_spec.rb - spec/generator_test_results_spec.rb - spec/manual/stress_test.rb - spec/parsing_parcels_spec.rb - spec/preprocessinator_extractor_spec.rb - spec/preprocessinator_includes_handler_spec.rb - spec/reportinator_spec.rb - spec/spec_helper.rb - spec/spec_system_helper.rb - spec/support/other_target.yml - spec/support/target.yml - spec/support/test_example.fail - spec/support/test_example.pass - spec/support/test_example_empty.pass - spec/support/test_example_ignore.pass - spec/support/test_example_mangled.pass - spec/support/test_example_with_time.pass - spec/system/deployment_as_gem_spec.rb - spec/system/deployment_as_vendor_spec.rb - spec/system/example_temp_sensor_spec.rb - spec/system/upgrade_as_vendor_spec.rb - spec/system_utils_spec.rb - spec/test_context_extractor_spec.rb - spec/tool_executor_helper_spec.rb - spec/uncategorized_specs_spec.rb - vendor/c_exception/README.md - vendor/c_exception/docs/CException.md - vendor/c_exception/docs/CODE_OF_CONDUCT.md - vendor/c_exception/docs/CONTRIBUTING.md - vendor/c_exception/docs/ThrowTheSwitchCodingStandard.md - vendor/c_exception/lib/CException.c - vendor/c_exception/lib/CException.h - vendor/c_exception/lib/meson.build - vendor/c_exception/license.txt - vendor/c_exception/meson.build - vendor/c_exception/project.yml - vendor/c_exception/test/TestException.c - vendor/c_exception/test/support/CExceptionConfig.h - vendor/cmock/Gemfile - vendor/cmock/LICENSE.txt - vendor/cmock/README.md - vendor/cmock/cmock.gemspec - vendor/cmock/config/production_environment.rb - vendor/cmock/config/test_environment.rb - vendor/cmock/docs/CMockChangeLog.md - vendor/cmock/docs/CMockKnownIssues.md - vendor/cmock/docs/CMock_ArgumentValidation.md - vendor/cmock/docs/CMock_Summary.md - vendor/cmock/docs/CODE_OF_CONDUCT.md - vendor/cmock/docs/CONTRIBUTING.md - vendor/cmock/docs/ThrowTheSwitchCodingStandard.md - vendor/cmock/examples/make_example/Makefile - vendor/cmock/examples/make_example/src/foo.c - vendor/cmock/examples/make_example/src/foo.h - vendor/cmock/examples/make_example/src/main.c - vendor/cmock/examples/make_example/test/test_foo.c - vendor/cmock/examples/make_example/test/test_main.c - vendor/cmock/examples/temp_sensor/rakefile.rb - vendor/cmock/examples/temp_sensor/rakefile_helper.rb - vendor/cmock/examples/temp_sensor/src/AT91SAM7X256.h - vendor/cmock/examples/temp_sensor/src/AdcConductor.c - vendor/cmock/examples/temp_sensor/src/AdcConductor.h - vendor/cmock/examples/temp_sensor/src/AdcHardware.c - vendor/cmock/examples/temp_sensor/src/AdcHardware.h - vendor/cmock/examples/temp_sensor/src/AdcHardwareConfigurator.c - vendor/cmock/examples/temp_sensor/src/AdcHardwareConfigurator.h - vendor/cmock/examples/temp_sensor/src/AdcModel.c - vendor/cmock/examples/temp_sensor/src/AdcModel.h - vendor/cmock/examples/temp_sensor/src/AdcTemperatureSensor.c - vendor/cmock/examples/temp_sensor/src/AdcTemperatureSensor.h - vendor/cmock/examples/temp_sensor/src/Executor.c - vendor/cmock/examples/temp_sensor/src/Executor.h - vendor/cmock/examples/temp_sensor/src/IntrinsicsWrapper.c - vendor/cmock/examples/temp_sensor/src/IntrinsicsWrapper.h - vendor/cmock/examples/temp_sensor/src/Main.c - vendor/cmock/examples/temp_sensor/src/Main.h - vendor/cmock/examples/temp_sensor/src/Model.c - vendor/cmock/examples/temp_sensor/src/Model.h - vendor/cmock/examples/temp_sensor/src/ModelConfig.h - vendor/cmock/examples/temp_sensor/src/TaskScheduler.c - vendor/cmock/examples/temp_sensor/src/TaskScheduler.h - vendor/cmock/examples/temp_sensor/src/TemperatureCalculator.c - vendor/cmock/examples/temp_sensor/src/TemperatureCalculator.h - vendor/cmock/examples/temp_sensor/src/TemperatureFilter.c - vendor/cmock/examples/temp_sensor/src/TemperatureFilter.h - vendor/cmock/examples/temp_sensor/src/TimerConductor.c - vendor/cmock/examples/temp_sensor/src/TimerConductor.h - vendor/cmock/examples/temp_sensor/src/TimerConfigurator.c - vendor/cmock/examples/temp_sensor/src/TimerConfigurator.h - vendor/cmock/examples/temp_sensor/src/TimerHardware.c - vendor/cmock/examples/temp_sensor/src/TimerHardware.h - vendor/cmock/examples/temp_sensor/src/TimerInterruptConfigurator.c - vendor/cmock/examples/temp_sensor/src/TimerInterruptConfigurator.h - vendor/cmock/examples/temp_sensor/src/TimerInterruptHandler.c - vendor/cmock/examples/temp_sensor/src/TimerInterruptHandler.h - vendor/cmock/examples/temp_sensor/src/TimerModel.c - vendor/cmock/examples/temp_sensor/src/TimerModel.h - vendor/cmock/examples/temp_sensor/src/Types.h - vendor/cmock/examples/temp_sensor/src/UsartBaudRateRegisterCalculator.c - vendor/cmock/examples/temp_sensor/src/UsartBaudRateRegisterCalculator.h - vendor/cmock/examples/temp_sensor/src/UsartConductor.c - vendor/cmock/examples/temp_sensor/src/UsartConductor.h - vendor/cmock/examples/temp_sensor/src/UsartConfigurator.c - vendor/cmock/examples/temp_sensor/src/UsartConfigurator.h - vendor/cmock/examples/temp_sensor/src/UsartHardware.c - vendor/cmock/examples/temp_sensor/src/UsartHardware.h - vendor/cmock/examples/temp_sensor/src/UsartModel.c - vendor/cmock/examples/temp_sensor/src/UsartModel.h - vendor/cmock/examples/temp_sensor/src/UsartPutChar.c - vendor/cmock/examples/temp_sensor/src/UsartPutChar.h - vendor/cmock/examples/temp_sensor/src/UsartTransmitBufferStatus.c - vendor/cmock/examples/temp_sensor/src/UsartTransmitBufferStatus.h - vendor/cmock/examples/temp_sensor/targets/gcc.yml - vendor/cmock/examples/temp_sensor/targets/iar_v4.yml - vendor/cmock/examples/temp_sensor/targets/iar_v5.yml - vendor/cmock/examples/temp_sensor/test/TestAdcConductor.c - vendor/cmock/examples/temp_sensor/test/TestAdcHardware.c - vendor/cmock/examples/temp_sensor/test/TestAdcHardwareConfigurator.c - vendor/cmock/examples/temp_sensor/test/TestAdcModel.c - vendor/cmock/examples/temp_sensor/test/TestAdcTemperatureSensor.c - vendor/cmock/examples/temp_sensor/test/TestExecutor.c - vendor/cmock/examples/temp_sensor/test/TestMain.c - vendor/cmock/examples/temp_sensor/test/TestModel.c - vendor/cmock/examples/temp_sensor/test/TestTaskScheduler.c - vendor/cmock/examples/temp_sensor/test/TestTemperatureCalculator.c - vendor/cmock/examples/temp_sensor/test/TestTemperatureFilter.c - vendor/cmock/examples/temp_sensor/test/TestTimerConductor.c - vendor/cmock/examples/temp_sensor/test/TestTimerConfigurator.c - vendor/cmock/examples/temp_sensor/test/TestTimerHardware.c - vendor/cmock/examples/temp_sensor/test/TestTimerInterruptConfigurator.c - vendor/cmock/examples/temp_sensor/test/TestTimerInterruptHandler.c - vendor/cmock/examples/temp_sensor/test/TestTimerModel.c - vendor/cmock/examples/temp_sensor/test/TestUsartBaudRateRegisterCalculator.c - vendor/cmock/examples/temp_sensor/test/TestUsartConductor.c - vendor/cmock/examples/temp_sensor/test/TestUsartConfigurator.c - vendor/cmock/examples/temp_sensor/test/TestUsartHardware.c - vendor/cmock/examples/temp_sensor/test/TestUsartModel.c - vendor/cmock/examples/temp_sensor/test/TestUsartPutChar.c - vendor/cmock/examples/temp_sensor/test/TestUsartTransmitBufferStatus.c - vendor/cmock/lib/cmock.rb - vendor/cmock/lib/cmock_config.rb - vendor/cmock/lib/cmock_file_writer.rb - vendor/cmock/lib/cmock_generator.rb - vendor/cmock/lib/cmock_generator_plugin_array.rb - vendor/cmock/lib/cmock_generator_plugin_callback.rb - vendor/cmock/lib/cmock_generator_plugin_cexception.rb - vendor/cmock/lib/cmock_generator_plugin_expect.rb - vendor/cmock/lib/cmock_generator_plugin_expect_any_args.rb - vendor/cmock/lib/cmock_generator_plugin_ignore.rb - vendor/cmock/lib/cmock_generator_plugin_ignore_arg.rb - vendor/cmock/lib/cmock_generator_plugin_ignore_stateless.rb - vendor/cmock/lib/cmock_generator_plugin_return_thru_ptr.rb - vendor/cmock/lib/cmock_generator_utils.rb - vendor/cmock/lib/cmock_header_parser.rb - vendor/cmock/lib/cmock_plugin_manager.rb - vendor/cmock/lib/cmock_unityhelper_parser.rb - vendor/cmock/lib/cmock_version.rb - vendor/cmock/meson.build - vendor/cmock/scripts/create_makefile.rb - vendor/cmock/scripts/create_mock.rb - vendor/cmock/scripts/create_runner.rb - vendor/cmock/scripts/test_summary.rb - vendor/cmock/src/cmock.c - vendor/cmock/src/cmock.h - vendor/cmock/src/cmock_internals.h - vendor/cmock/src/meson.build - vendor/cmock/test/c/TestCMockC.c - vendor/cmock/test/c/TestCMockC.yml - vendor/cmock/test/c/TestCMockCDynamic.c - vendor/cmock/test/c/TestCMockCDynamic.yml - vendor/cmock/test/c/TestCMockCDynamic_Runner.c - vendor/cmock/test/c/TestCMockC_Runner.c - vendor/cmock/test/iar/iar_v4/Resource/SAM7_FLASH.mac - vendor/cmock/test/iar/iar_v4/Resource/SAM7_RAM.mac - vendor/cmock/test/iar/iar_v4/Resource/SAM7_SIM.mac - vendor/cmock/test/iar/iar_v4/Resource/at91SAM7X256_FLASH.xcl - vendor/cmock/test/iar/iar_v4/Resource/at91SAM7X256_RAM.xcl - vendor/cmock/test/iar/iar_v4/Resource/ioat91sam7x256.ddf - vendor/cmock/test/iar/iar_v4/cmock_demo.dep - vendor/cmock/test/iar/iar_v4/cmock_demo.ewd - vendor/cmock/test/iar/iar_v4/cmock_demo.ewp - vendor/cmock/test/iar/iar_v4/cmock_demo.eww - vendor/cmock/test/iar/iar_v4/incIAR/AT91SAM7X-EK.h - vendor/cmock/test/iar/iar_v4/incIAR/AT91SAM7X256.inc - vendor/cmock/test/iar/iar_v4/incIAR/AT91SAM7X256.rdf - vendor/cmock/test/iar/iar_v4/incIAR/AT91SAM7X256.tcl - vendor/cmock/test/iar/iar_v4/incIAR/AT91SAM7X256_inc.h - vendor/cmock/test/iar/iar_v4/incIAR/ioat91sam7x256.h - vendor/cmock/test/iar/iar_v4/incIAR/lib_AT91SAM7X256.h - vendor/cmock/test/iar/iar_v4/settings/cmock_demo.cspy.bat - vendor/cmock/test/iar/iar_v4/settings/cmock_demo.dbgdt - vendor/cmock/test/iar/iar_v4/settings/cmock_demo.dni - vendor/cmock/test/iar/iar_v4/settings/cmock_demo.wsdt - vendor/cmock/test/iar/iar_v4/srcIAR/Cstartup.s79 - vendor/cmock/test/iar/iar_v4/srcIAR/Cstartup_SAM7.c - vendor/cmock/test/iar/iar_v5/Resource/SAM7_FLASH.mac - vendor/cmock/test/iar/iar_v5/Resource/SAM7_RAM.mac - vendor/cmock/test/iar/iar_v5/Resource/SAM7_SIM.mac - vendor/cmock/test/iar/iar_v5/Resource/at91SAM7X256_FLASH.icf - vendor/cmock/test/iar/iar_v5/Resource/at91SAM7X256_RAM.icf - vendor/cmock/test/iar/iar_v5/cmock_demo.dep - vendor/cmock/test/iar/iar_v5/cmock_demo.ewd - vendor/cmock/test/iar/iar_v5/cmock_demo.ewp - vendor/cmock/test/iar/iar_v5/cmock_demo.eww - vendor/cmock/test/iar/iar_v5/incIAR/AT91SAM7X-EK.h - vendor/cmock/test/iar/iar_v5/incIAR/AT91SAM7X256_inc.h - vendor/cmock/test/iar/iar_v5/incIAR/lib_AT91SAM7X256.h - vendor/cmock/test/iar/iar_v5/incIAR/project.h - vendor/cmock/test/iar/iar_v5/settings/BasicInterrupt_SAM7X.cspy.bat - vendor/cmock/test/iar/iar_v5/settings/BasicInterrupt_SAM7X.dbgdt - vendor/cmock/test/iar/iar_v5/settings/BasicInterrupt_SAM7X.dni - vendor/cmock/test/iar/iar_v5/settings/BasicInterrupt_SAM7X.wsdt - vendor/cmock/test/iar/iar_v5/settings/BasicInterrupt_SAM7X_FLASH_Debug.jlink - vendor/cmock/test/iar/iar_v5/settings/cmock_demo.cspy.bat - vendor/cmock/test/iar/iar_v5/settings/cmock_demo.dbgdt - vendor/cmock/test/iar/iar_v5/settings/cmock_demo.dni - vendor/cmock/test/iar/iar_v5/settings/cmock_demo.wsdt - vendor/cmock/test/iar/iar_v5/settings/cmock_demo_Binary.jlink - vendor/cmock/test/iar/iar_v5/settings/cmock_demo_FLASH_Debug.jlink - vendor/cmock/test/iar/iar_v5/settings/cmock_demo_RAM_Debug.jlink - vendor/cmock/test/iar/iar_v5/srcIAR/Cstartup.s - vendor/cmock/test/iar/iar_v5/srcIAR/Cstartup_SAM7.c - vendor/cmock/test/rakefile - vendor/cmock/test/rakefile_helper.rb - vendor/cmock/test/system/systest_generator.rb - vendor/cmock/test/system/test_compilation/callingconv.h - vendor/cmock/test/system/test_compilation/config.yml - vendor/cmock/test/system/test_compilation/const.h - vendor/cmock/test/system/test_compilation/inline.h - vendor/cmock/test/system/test_compilation/osek.h - vendor/cmock/test/system/test_compilation/parsing.h - vendor/cmock/test/system/test_interactions/all_plugins_but_other_limits.yml - vendor/cmock/test/system/test_interactions/all_plugins_coexist.yml - vendor/cmock/test/system/test_interactions/array_and_pointer_handling.yml - vendor/cmock/test/system/test_interactions/basic_expect_and_return.yml - vendor/cmock/test/system/test_interactions/const_primitives_handling.yml - vendor/cmock/test/system/test_interactions/doesnt_leave_details_behind.yml - vendor/cmock/test/system/test_interactions/enforce_strict_ordering.yml - vendor/cmock/test/system/test_interactions/expect_and_return_custom_types.yml - vendor/cmock/test/system/test_interactions/expect_and_return_treat_as.yml - vendor/cmock/test/system/test_interactions/expect_and_throw.yml - vendor/cmock/test/system/test_interactions/expect_any_args.yml - vendor/cmock/test/system/test_interactions/fancy_pointer_handling.yml - vendor/cmock/test/system/test_interactions/function_pointer_handling.yml - vendor/cmock/test/system/test_interactions/ignore_and_return.yml - vendor/cmock/test/system/test_interactions/ignore_and_return_stateless.yml - vendor/cmock/test/system/test_interactions/ignore_strict_mock_calling.yml - vendor/cmock/test/system/test_interactions/newer_standards_stuff1.yml - vendor/cmock/test/system/test_interactions/nonstandard_parsed_stuff_1.yml - vendor/cmock/test/system/test_interactions/nonstandard_parsed_stuff_2.yml - vendor/cmock/test/system/test_interactions/out_of_memory.yml - vendor/cmock/test/system/test_interactions/parsing_challenges.yml - vendor/cmock/test/system/test_interactions/return_thru_ptr_and_expect_any_args.yml - vendor/cmock/test/system/test_interactions/return_thru_ptr_ignore_arg.yml - vendor/cmock/test/system/test_interactions/skeleton.yml - vendor/cmock/test/system/test_interactions/skeleton_update.yml - vendor/cmock/test/system/test_interactions/struct_union_enum_expect_and_return.yml - vendor/cmock/test/system/test_interactions/struct_union_enum_expect_and_return_with_plugins.yml - vendor/cmock/test/system/test_interactions/stubs_with_callbacks.yml - vendor/cmock/test/system/test_interactions/unity_64bit_support.yml - vendor/cmock/test/system/test_interactions/unity_ignores.yml - vendor/cmock/test/system/test_interactions/unity_void_pointer_compare.yml - vendor/cmock/test/system/test_interactions/wrong_expect_and_return.yml - vendor/cmock/test/targets/clang_strict.yml - vendor/cmock/test/targets/gcc.yml - vendor/cmock/test/targets/gcc_64.yml - vendor/cmock/test/targets/gcc_tiny.yml - vendor/cmock/test/targets/iar_arm_v4.yml - vendor/cmock/test/targets/iar_arm_v5.yml - vendor/cmock/test/test_helper.rb - vendor/cmock/test/unit/cmock_config_test.rb - vendor/cmock/test/unit/cmock_config_test.yml - vendor/cmock/test/unit/cmock_file_writer_test.rb - vendor/cmock/test/unit/cmock_generator_main_test.rb - vendor/cmock/test/unit/cmock_generator_plugin_array_test.rb - vendor/cmock/test/unit/cmock_generator_plugin_callback_test.rb - vendor/cmock/test/unit/cmock_generator_plugin_cexception_test.rb - vendor/cmock/test/unit/cmock_generator_plugin_expect_a_test.rb - vendor/cmock/test/unit/cmock_generator_plugin_expect_any_args_test.rb - vendor/cmock/test/unit/cmock_generator_plugin_expect_b_test.rb - vendor/cmock/test/unit/cmock_generator_plugin_ignore_arg_test.rb - vendor/cmock/test/unit/cmock_generator_plugin_ignore_stateless_test.rb - vendor/cmock/test/unit/cmock_generator_plugin_ignore_test.rb - vendor/cmock/test/unit/cmock_generator_plugin_return_thru_ptr_test.rb - vendor/cmock/test/unit/cmock_generator_utils_test.rb - vendor/cmock/test/unit/cmock_header_parser_test.rb - vendor/cmock/test/unit/cmock_plugin_manager_test.rb - vendor/cmock/test/unit/cmock_unityhelper_parser_test.rb - vendor/cmock/vendor/behaviors/Manifest.txt - vendor/cmock/vendor/behaviors/Rakefile - vendor/cmock/vendor/behaviors/lib/behaviors.rb - vendor/cmock/vendor/behaviors/lib/behaviors/reporttask.rb - vendor/cmock/vendor/behaviors/test/behaviors_tasks_test.rb - vendor/cmock/vendor/behaviors/test/behaviors_test.rb - vendor/cmock/vendor/behaviors/test/tasks_test/Rakefile - vendor/cmock/vendor/behaviors/test/tasks_test/lib/user.rb - vendor/cmock/vendor/behaviors/test/tasks_test/test/user_test.rb - vendor/cmock/vendor/c_exception/README.md - vendor/cmock/vendor/c_exception/docs/CException.md - vendor/cmock/vendor/c_exception/docs/CODE_OF_CONDUCT.md - vendor/cmock/vendor/c_exception/docs/CONTRIBUTING.md - vendor/cmock/vendor/c_exception/docs/ThrowTheSwitchCodingStandard.md - vendor/cmock/vendor/c_exception/lib/CException.c - vendor/cmock/vendor/c_exception/lib/CException.h - vendor/cmock/vendor/c_exception/lib/meson.build - vendor/cmock/vendor/c_exception/license.txt - vendor/cmock/vendor/c_exception/meson.build - vendor/cmock/vendor/c_exception/project.yml - vendor/cmock/vendor/c_exception/test/TestException.c - vendor/cmock/vendor/c_exception/test/support/CExceptionConfig.h - vendor/cmock/vendor/unity/CMakeLists.txt - vendor/cmock/vendor/unity/LICENSE.txt - vendor/cmock/vendor/unity/README.md - vendor/cmock/vendor/unity/auto/__init__.py - vendor/cmock/vendor/unity/auto/colour_prompt.rb - vendor/cmock/vendor/unity/auto/colour_reporter.rb - vendor/cmock/vendor/unity/auto/extract_version.py - vendor/cmock/vendor/unity/auto/generate_config.yml - vendor/cmock/vendor/unity/auto/generate_module.rb - vendor/cmock/vendor/unity/auto/generate_test_runner.rb - vendor/cmock/vendor/unity/auto/parse_output.rb - vendor/cmock/vendor/unity/auto/run_test.erb - vendor/cmock/vendor/unity/auto/stylize_as_junit.py - vendor/cmock/vendor/unity/auto/stylize_as_junit.rb - vendor/cmock/vendor/unity/auto/test_file_filter.rb - vendor/cmock/vendor/unity/auto/type_sanitizer.rb - vendor/cmock/vendor/unity/auto/unity_test_summary.py - vendor/cmock/vendor/unity/auto/unity_test_summary.rb - vendor/cmock/vendor/unity/auto/yaml_helper.rb - vendor/cmock/vendor/unity/docs/CODE_OF_CONDUCT.md - vendor/cmock/vendor/unity/docs/CONTRIBUTING.md - vendor/cmock/vendor/unity/docs/MesonGeneratorRunner.md - vendor/cmock/vendor/unity/docs/ThrowTheSwitchCodingStandard.md - vendor/cmock/vendor/unity/docs/UnityAssertionsCheatSheetSuitableforPrintingandPossiblyFraming.pdf - vendor/cmock/vendor/unity/docs/UnityAssertionsReference.md - vendor/cmock/vendor/unity/docs/UnityChangeLog.md - vendor/cmock/vendor/unity/docs/UnityConfigurationGuide.md - vendor/cmock/vendor/unity/docs/UnityGettingStartedGuide.md - vendor/cmock/vendor/unity/docs/UnityHelperScriptsGuide.md - vendor/cmock/vendor/unity/docs/UnityKnownIssues.md - vendor/cmock/vendor/unity/examples/example_1/makefile - vendor/cmock/vendor/unity/examples/example_1/meson.build - vendor/cmock/vendor/unity/examples/example_1/readme.txt - vendor/cmock/vendor/unity/examples/example_1/src/ProductionCode.c - vendor/cmock/vendor/unity/examples/example_1/src/ProductionCode.h - vendor/cmock/vendor/unity/examples/example_1/src/ProductionCode2.c - vendor/cmock/vendor/unity/examples/example_1/src/ProductionCode2.h - vendor/cmock/vendor/unity/examples/example_1/subprojects/unity.wrap - vendor/cmock/vendor/unity/examples/example_1/test/TestProductionCode.c - vendor/cmock/vendor/unity/examples/example_1/test/TestProductionCode2.c - vendor/cmock/vendor/unity/examples/example_1/test/test_runners/TestProductionCode2_Runner.c - vendor/cmock/vendor/unity/examples/example_1/test/test_runners/TestProductionCode_Runner.c - vendor/cmock/vendor/unity/examples/example_2/makefile - vendor/cmock/vendor/unity/examples/example_2/readme.txt - vendor/cmock/vendor/unity/examples/example_2/src/ProductionCode.c - vendor/cmock/vendor/unity/examples/example_2/src/ProductionCode.h - vendor/cmock/vendor/unity/examples/example_2/src/ProductionCode2.c - vendor/cmock/vendor/unity/examples/example_2/src/ProductionCode2.h - vendor/cmock/vendor/unity/examples/example_2/test/TestProductionCode.c - vendor/cmock/vendor/unity/examples/example_2/test/TestProductionCode2.c - vendor/cmock/vendor/unity/examples/example_2/test/test_runners/TestProductionCode2_Runner.c - vendor/cmock/vendor/unity/examples/example_2/test/test_runners/TestProductionCode_Runner.c - vendor/cmock/vendor/unity/examples/example_2/test/test_runners/all_tests.c - vendor/cmock/vendor/unity/examples/example_3/helper/UnityHelper.c - vendor/cmock/vendor/unity/examples/example_3/helper/UnityHelper.h - vendor/cmock/vendor/unity/examples/example_3/rakefile.rb - vendor/cmock/vendor/unity/examples/example_3/rakefile_helper.rb - vendor/cmock/vendor/unity/examples/example_3/readme.txt - vendor/cmock/vendor/unity/examples/example_3/src/ProductionCode.c - vendor/cmock/vendor/unity/examples/example_3/src/ProductionCode.h - vendor/cmock/vendor/unity/examples/example_3/src/ProductionCode2.c - vendor/cmock/vendor/unity/examples/example_3/src/ProductionCode2.h - vendor/cmock/vendor/unity/examples/example_3/target_gcc_32.yml - vendor/cmock/vendor/unity/examples/example_3/test/TestProductionCode.c - vendor/cmock/vendor/unity/examples/example_3/test/TestProductionCode2.c - vendor/cmock/vendor/unity/examples/example_4/meson.build - vendor/cmock/vendor/unity/examples/example_4/readme.txt - vendor/cmock/vendor/unity/examples/example_4/src/ProductionCode.c - vendor/cmock/vendor/unity/examples/example_4/src/ProductionCode.h - vendor/cmock/vendor/unity/examples/example_4/src/ProductionCode2.c - vendor/cmock/vendor/unity/examples/example_4/src/ProductionCode2.h - vendor/cmock/vendor/unity/examples/example_4/src/meson.build - vendor/cmock/vendor/unity/examples/example_4/subprojects/unity.wrap - vendor/cmock/vendor/unity/examples/example_4/test/TestProductionCode.c - vendor/cmock/vendor/unity/examples/example_4/test/TestProductionCode2.c - vendor/cmock/vendor/unity/examples/example_4/test/meson.build - vendor/cmock/vendor/unity/examples/example_4/test/test_runners/TestProductionCode2_Runner.c - vendor/cmock/vendor/unity/examples/example_4/test/test_runners/TestProductionCode_Runner.c - vendor/cmock/vendor/unity/examples/example_4/test/test_runners/meson.build - vendor/cmock/vendor/unity/examples/unity_config.h - vendor/cmock/vendor/unity/extras/bdd/readme.md - vendor/cmock/vendor/unity/extras/bdd/src/unity_bdd.h - vendor/cmock/vendor/unity/extras/bdd/test/meson.build - vendor/cmock/vendor/unity/extras/bdd/test/test_bdd.c - vendor/cmock/vendor/unity/extras/eclipse/error_parsers.txt - vendor/cmock/vendor/unity/extras/fixture/readme.md - vendor/cmock/vendor/unity/extras/fixture/src/meson.build - vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture.c - vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture.h - vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture_internals.h - vendor/cmock/vendor/unity/extras/fixture/test/Makefile - vendor/cmock/vendor/unity/extras/fixture/test/main/AllTests.c - vendor/cmock/vendor/unity/extras/fixture/test/template_fixture_tests.c - vendor/cmock/vendor/unity/extras/fixture/test/unity_fixture_Test.c - vendor/cmock/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c - vendor/cmock/vendor/unity/extras/memory/readme.md - vendor/cmock/vendor/unity/extras/memory/src/meson.build - vendor/cmock/vendor/unity/extras/memory/src/unity_memory.c - vendor/cmock/vendor/unity/extras/memory/src/unity_memory.h - vendor/cmock/vendor/unity/extras/memory/test/Makefile - vendor/cmock/vendor/unity/extras/memory/test/unity_memory_Test.c - vendor/cmock/vendor/unity/extras/memory/test/unity_memory_TestRunner.c - vendor/cmock/vendor/unity/extras/memory/test/unity_output_Spy.c - vendor/cmock/vendor/unity/extras/memory/test/unity_output_Spy.h - vendor/cmock/vendor/unity/library.json - vendor/cmock/vendor/unity/meson.build - vendor/cmock/vendor/unity/meson_options.txt - vendor/cmock/vendor/unity/platformio-build.py - vendor/cmock/vendor/unity/src/meson.build - vendor/cmock/vendor/unity/src/unity.c - vendor/cmock/vendor/unity/src/unity.h - vendor/cmock/vendor/unity/src/unity_internals.h - vendor/cmock/vendor/unity/test/Makefile - vendor/cmock/vendor/unity/test/expectdata/testsample_cmd.c - vendor/cmock/vendor/unity/test/expectdata/testsample_def.c - vendor/cmock/vendor/unity/test/expectdata/testsample_head1.c - vendor/cmock/vendor/unity/test/expectdata/testsample_head1.h - vendor/cmock/vendor/unity/test/expectdata/testsample_mock_cmd.c - vendor/cmock/vendor/unity/test/expectdata/testsample_mock_def.c - vendor/cmock/vendor/unity/test/expectdata/testsample_mock_head1.c - vendor/cmock/vendor/unity/test/expectdata/testsample_mock_head1.h - vendor/cmock/vendor/unity/test/expectdata/testsample_mock_new1.c - vendor/cmock/vendor/unity/test/expectdata/testsample_mock_new2.c - vendor/cmock/vendor/unity/test/expectdata/testsample_mock_param.c - vendor/cmock/vendor/unity/test/expectdata/testsample_mock_run1.c - vendor/cmock/vendor/unity/test/expectdata/testsample_mock_run2.c - vendor/cmock/vendor/unity/test/expectdata/testsample_mock_yaml.c - vendor/cmock/vendor/unity/test/expectdata/testsample_new1.c - vendor/cmock/vendor/unity/test/expectdata/testsample_new2.c - vendor/cmock/vendor/unity/test/expectdata/testsample_param.c - vendor/cmock/vendor/unity/test/expectdata/testsample_run1.c - vendor/cmock/vendor/unity/test/expectdata/testsample_run2.c - vendor/cmock/vendor/unity/test/expectdata/testsample_yaml.c - vendor/cmock/vendor/unity/test/rakefile - vendor/cmock/vendor/unity/test/rakefile_helper.rb - vendor/cmock/vendor/unity/test/spec/generate_module_existing_file_spec.rb - vendor/cmock/vendor/unity/test/targets/ansi.yml - vendor/cmock/vendor/unity/test/targets/clang_file.yml - vendor/cmock/vendor/unity/test/targets/clang_strict.yml - vendor/cmock/vendor/unity/test/targets/gcc_32.yml - vendor/cmock/vendor/unity/test/targets/gcc_64.yml - vendor/cmock/vendor/unity/test/targets/gcc_auto_limits.yml - vendor/cmock/vendor/unity/test/targets/gcc_auto_stdint.yml - vendor/cmock/vendor/unity/test/targets/gcc_manual_math.yml - vendor/cmock/vendor/unity/test/targets/hitech_picc18.yml - vendor/cmock/vendor/unity/test/targets/iar_arm_v4.yml - vendor/cmock/vendor/unity/test/targets/iar_arm_v5.yml - vendor/cmock/vendor/unity/test/targets/iar_arm_v5_3.yml - vendor/cmock/vendor/unity/test/targets/iar_armcortex_LM3S9B92_v5_4.yml - vendor/cmock/vendor/unity/test/targets/iar_cortexm3_v5.yml - vendor/cmock/vendor/unity/test/targets/iar_msp430.yml - vendor/cmock/vendor/unity/test/targets/iar_sh2a_v6.yml - vendor/cmock/vendor/unity/test/testdata/CException.h - vendor/cmock/vendor/unity/test/testdata/Defs.h - vendor/cmock/vendor/unity/test/testdata/cmock.h - vendor/cmock/vendor/unity/test/testdata/mockMock.h - vendor/cmock/vendor/unity/test/testdata/testRunnerGenerator.c - vendor/cmock/vendor/unity/test/testdata/testRunnerGeneratorSmall.c - vendor/cmock/vendor/unity/test/testdata/testRunnerGeneratorWithMocks.c - vendor/cmock/vendor/unity/test/tests/self_assessment_utils.h - vendor/cmock/vendor/unity/test/tests/test_generate_test_runner.rb - vendor/cmock/vendor/unity/test/tests/test_unity_arrays.c - vendor/cmock/vendor/unity/test/tests/test_unity_core.c - vendor/cmock/vendor/unity/test/tests/test_unity_doubles.c - vendor/cmock/vendor/unity/test/tests/test_unity_floats.c - vendor/cmock/vendor/unity/test/tests/test_unity_integers.c - vendor/cmock/vendor/unity/test/tests/test_unity_integers_64.c - vendor/cmock/vendor/unity/test/tests/test_unity_memory.c - vendor/cmock/vendor/unity/test/tests/test_unity_parameterized.c - vendor/cmock/vendor/unity/test/tests/test_unity_parameterizedDemo.c - vendor/cmock/vendor/unity/test/tests/test_unity_strings.c - vendor/cmock/vendor/unity/test/tests/types_for_test.h - vendor/cmock/vendor/unity/unityConfig.cmake - vendor/diy/History.txt - vendor/diy/LICENSE.txt - vendor/diy/README.rdoc - vendor/diy/Rakefile - vendor/diy/TODO.txt - vendor/diy/diy.gemspec - vendor/diy/lib/diy.rb - vendor/diy/lib/diy/factory.rb - vendor/diy/sample_code/car.rb - vendor/diy/sample_code/chassis.rb - vendor/diy/sample_code/diy_example.rb - vendor/diy/sample_code/engine.rb - vendor/diy/sample_code/objects.yml - vendor/diy/test/constructor.rb - vendor/diy/test/diy_test.rb - vendor/diy/test/factory_test.rb - vendor/diy/test/files/broken_construction.yml - vendor/diy/test/files/cat/cat.rb - vendor/diy/test/files/cat/extra_conflict.yml - vendor/diy/test/files/cat/heritage.rb - vendor/diy/test/files/cat/needs_input.yml - vendor/diy/test/files/cat/the_cat_lineage.rb - vendor/diy/test/files/dog/dog_model.rb - vendor/diy/test/files/dog/dog_presenter.rb - vendor/diy/test/files/dog/dog_view.rb - vendor/diy/test/files/dog/file_resolver.rb - vendor/diy/test/files/dog/other_thing.rb - vendor/diy/test/files/dog/simple.yml - vendor/diy/test/files/donkey/foo.rb - vendor/diy/test/files/donkey/foo/bar/qux.rb - vendor/diy/test/files/factory/beef.rb - vendor/diy/test/files/factory/dog.rb - vendor/diy/test/files/factory/factory.yml - vendor/diy/test/files/factory/farm/llama.rb - vendor/diy/test/files/factory/farm/pork.rb - vendor/diy/test/files/factory/kitten.rb - vendor/diy/test/files/fud/objects.yml - vendor/diy/test/files/fud/toy.rb - vendor/diy/test/files/functions/attached_things_builder.rb - vendor/diy/test/files/functions/invalid_method.yml - vendor/diy/test/files/functions/method_extractor.rb - vendor/diy/test/files/functions/nonsingleton_objects.yml - vendor/diy/test/files/functions/objects.yml - vendor/diy/test/files/functions/thing.rb - vendor/diy/test/files/functions/thing_builder.rb - vendor/diy/test/files/functions/things_builder.rb - vendor/diy/test/files/gnu/objects.yml - vendor/diy/test/files/gnu/thinger.rb - vendor/diy/test/files/goat/base.rb - vendor/diy/test/files/goat/can.rb - vendor/diy/test/files/goat/goat.rb - vendor/diy/test/files/goat/objects.yml - vendor/diy/test/files/goat/paper.rb - vendor/diy/test/files/goat/plane.rb - vendor/diy/test/files/goat/shirt.rb - vendor/diy/test/files/goat/wings.rb - vendor/diy/test/files/horse/holder_thing.rb - vendor/diy/test/files/horse/objects.yml - vendor/diy/test/files/namespace/animal/bird.rb - vendor/diy/test/files/namespace/animal/cat.rb - vendor/diy/test/files/namespace/animal/reptile/hardshell/turtle.rb - vendor/diy/test/files/namespace/animal/reptile/lizard.rb - vendor/diy/test/files/namespace/bad_module_specified.yml - vendor/diy/test/files/namespace/class_name_combine.yml - vendor/diy/test/files/namespace/hello.txt - vendor/diy/test/files/namespace/no_module_specified.yml - vendor/diy/test/files/namespace/objects.yml - vendor/diy/test/files/namespace/road.rb - vendor/diy/test/files/namespace/sky.rb - vendor/diy/test/files/namespace/subcontext.yml - vendor/diy/test/files/non_singleton/air.rb - vendor/diy/test/files/non_singleton/fat_cat.rb - vendor/diy/test/files/non_singleton/objects.yml - vendor/diy/test/files/non_singleton/pig.rb - vendor/diy/test/files/non_singleton/thread_spinner.rb - vendor/diy/test/files/non_singleton/tick.rb - vendor/diy/test/files/non_singleton/yard.rb - vendor/diy/test/files/yak/core_model.rb - vendor/diy/test/files/yak/core_presenter.rb - vendor/diy/test/files/yak/core_view.rb - vendor/diy/test/files/yak/data_source.rb - vendor/diy/test/files/yak/fringe_model.rb - vendor/diy/test/files/yak/fringe_presenter.rb - vendor/diy/test/files/yak/fringe_view.rb - vendor/diy/test/files/yak/giant_squid.rb - vendor/diy/test/files/yak/krill.rb - vendor/diy/test/files/yak/my_objects.yml - vendor/diy/test/files/yak/sub_sub_context_test.yml - vendor/diy/test/test_helper.rb - vendor/unity/CMakeLists.txt - vendor/unity/LICENSE.txt - vendor/unity/README.md - vendor/unity/auto/__init__.py - vendor/unity/auto/colour_prompt.rb - vendor/unity/auto/colour_reporter.rb - vendor/unity/auto/extract_version.py - vendor/unity/auto/generate_config.yml - vendor/unity/auto/generate_module.rb - vendor/unity/auto/generate_test_runner.rb - vendor/unity/auto/parse_output.rb - vendor/unity/auto/run_test.erb - vendor/unity/auto/stylize_as_junit.py - vendor/unity/auto/stylize_as_junit.rb - vendor/unity/auto/test_file_filter.rb - vendor/unity/auto/type_sanitizer.rb - vendor/unity/auto/unity_test_summary.py - vendor/unity/auto/unity_test_summary.rb - vendor/unity/auto/yaml_helper.rb - vendor/unity/docs/CODE_OF_CONDUCT.md - vendor/unity/docs/CONTRIBUTING.md - vendor/unity/docs/MesonGeneratorRunner.md - vendor/unity/docs/ThrowTheSwitchCodingStandard.md - vendor/unity/docs/UnityAssertionsCheatSheetSuitableforPrintingandPossiblyFraming.pdf - vendor/unity/docs/UnityAssertionsReference.md - vendor/unity/docs/UnityChangeLog.md - vendor/unity/docs/UnityConfigurationGuide.md - vendor/unity/docs/UnityGettingStartedGuide.md - vendor/unity/docs/UnityHelperScriptsGuide.md - vendor/unity/docs/UnityKnownIssues.md - vendor/unity/examples/example_1/makefile - vendor/unity/examples/example_1/meson.build - vendor/unity/examples/example_1/readme.txt - vendor/unity/examples/example_1/src/ProductionCode.c - vendor/unity/examples/example_1/src/ProductionCode.h - vendor/unity/examples/example_1/src/ProductionCode2.c - vendor/unity/examples/example_1/src/ProductionCode2.h - vendor/unity/examples/example_1/subprojects/unity.wrap - vendor/unity/examples/example_1/test/TestProductionCode.c - vendor/unity/examples/example_1/test/TestProductionCode2.c - vendor/unity/examples/example_1/test/test_runners/TestProductionCode2_Runner.c - vendor/unity/examples/example_1/test/test_runners/TestProductionCode_Runner.c - vendor/unity/examples/example_2/makefile - vendor/unity/examples/example_2/readme.txt - vendor/unity/examples/example_2/src/ProductionCode.c - vendor/unity/examples/example_2/src/ProductionCode.h - vendor/unity/examples/example_2/src/ProductionCode2.c - vendor/unity/examples/example_2/src/ProductionCode2.h - vendor/unity/examples/example_2/test/TestProductionCode.c - vendor/unity/examples/example_2/test/TestProductionCode2.c - vendor/unity/examples/example_2/test/test_runners/TestProductionCode2_Runner.c - vendor/unity/examples/example_2/test/test_runners/TestProductionCode_Runner.c - vendor/unity/examples/example_2/test/test_runners/all_tests.c - vendor/unity/examples/example_3/helper/UnityHelper.c - vendor/unity/examples/example_3/helper/UnityHelper.h - vendor/unity/examples/example_3/rakefile.rb - vendor/unity/examples/example_3/rakefile_helper.rb - vendor/unity/examples/example_3/readme.txt - vendor/unity/examples/example_3/src/ProductionCode.c - vendor/unity/examples/example_3/src/ProductionCode.h - vendor/unity/examples/example_3/src/ProductionCode2.c - vendor/unity/examples/example_3/src/ProductionCode2.h - vendor/unity/examples/example_3/target_gcc_32.yml - vendor/unity/examples/example_3/test/TestProductionCode.c - vendor/unity/examples/example_3/test/TestProductionCode2.c - vendor/unity/examples/example_4/meson.build - vendor/unity/examples/example_4/readme.txt - vendor/unity/examples/example_4/src/ProductionCode.c - vendor/unity/examples/example_4/src/ProductionCode.h - vendor/unity/examples/example_4/src/ProductionCode2.c - vendor/unity/examples/example_4/src/ProductionCode2.h - vendor/unity/examples/example_4/src/meson.build - vendor/unity/examples/example_4/subprojects/unity.wrap - vendor/unity/examples/example_4/test/TestProductionCode.c - vendor/unity/examples/example_4/test/TestProductionCode2.c - vendor/unity/examples/example_4/test/meson.build - vendor/unity/examples/example_4/test/test_runners/TestProductionCode2_Runner.c - vendor/unity/examples/example_4/test/test_runners/TestProductionCode_Runner.c - vendor/unity/examples/example_4/test/test_runners/meson.build - vendor/unity/examples/unity_config.h - vendor/unity/extras/bdd/readme.md - vendor/unity/extras/bdd/src/unity_bdd.h - vendor/unity/extras/bdd/test/meson.build - vendor/unity/extras/bdd/test/test_bdd.c - vendor/unity/extras/eclipse/error_parsers.txt - vendor/unity/extras/fixture/readme.md - vendor/unity/extras/fixture/src/meson.build - vendor/unity/extras/fixture/src/unity_fixture.c - vendor/unity/extras/fixture/src/unity_fixture.h - vendor/unity/extras/fixture/src/unity_fixture_internals.h - vendor/unity/extras/fixture/test/Makefile - vendor/unity/extras/fixture/test/main/AllTests.c - vendor/unity/extras/fixture/test/template_fixture_tests.c - vendor/unity/extras/fixture/test/unity_fixture_Test.c - vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c - vendor/unity/extras/memory/readme.md - vendor/unity/extras/memory/src/meson.build - vendor/unity/extras/memory/src/unity_memory.c - vendor/unity/extras/memory/src/unity_memory.h - vendor/unity/extras/memory/test/Makefile - vendor/unity/extras/memory/test/unity_memory_Test.c - vendor/unity/extras/memory/test/unity_memory_TestRunner.c - vendor/unity/extras/memory/test/unity_output_Spy.c - vendor/unity/extras/memory/test/unity_output_Spy.h - vendor/unity/library.json - vendor/unity/meson.build - vendor/unity/meson_options.txt - vendor/unity/platformio-build.py - vendor/unity/src/meson.build - vendor/unity/src/unity.c - vendor/unity/src/unity.h - vendor/unity/src/unity_internals.h - vendor/unity/test/Makefile - vendor/unity/test/expectdata/testsample_cmd.c - vendor/unity/test/expectdata/testsample_def.c - vendor/unity/test/expectdata/testsample_head1.c - vendor/unity/test/expectdata/testsample_head1.h - vendor/unity/test/expectdata/testsample_mock_cmd.c - vendor/unity/test/expectdata/testsample_mock_def.c - vendor/unity/test/expectdata/testsample_mock_head1.c - vendor/unity/test/expectdata/testsample_mock_head1.h - vendor/unity/test/expectdata/testsample_mock_new1.c - vendor/unity/test/expectdata/testsample_mock_new2.c - vendor/unity/test/expectdata/testsample_mock_param.c - vendor/unity/test/expectdata/testsample_mock_run1.c - vendor/unity/test/expectdata/testsample_mock_run2.c - vendor/unity/test/expectdata/testsample_mock_yaml.c - vendor/unity/test/expectdata/testsample_new1.c - vendor/unity/test/expectdata/testsample_new2.c - vendor/unity/test/expectdata/testsample_param.c - vendor/unity/test/expectdata/testsample_run1.c - vendor/unity/test/expectdata/testsample_run2.c - vendor/unity/test/expectdata/testsample_yaml.c - vendor/unity/test/rakefile - vendor/unity/test/rakefile_helper.rb - vendor/unity/test/spec/generate_module_existing_file_spec.rb - vendor/unity/test/targets/ansi.yml - vendor/unity/test/targets/clang_file.yml - vendor/unity/test/targets/clang_strict.yml - vendor/unity/test/targets/gcc_32.yml - vendor/unity/test/targets/gcc_64.yml - vendor/unity/test/targets/gcc_auto_limits.yml - vendor/unity/test/targets/gcc_auto_stdint.yml - vendor/unity/test/targets/gcc_manual_math.yml - vendor/unity/test/targets/hitech_picc18.yml - vendor/unity/test/targets/iar_arm_v4.yml - vendor/unity/test/targets/iar_arm_v5.yml - vendor/unity/test/targets/iar_arm_v5_3.yml - vendor/unity/test/targets/iar_armcortex_LM3S9B92_v5_4.yml - vendor/unity/test/targets/iar_cortexm3_v5.yml - vendor/unity/test/targets/iar_msp430.yml - vendor/unity/test/targets/iar_sh2a_v6.yml - vendor/unity/test/testdata/CException.h - vendor/unity/test/testdata/Defs.h - vendor/unity/test/testdata/cmock.h - vendor/unity/test/testdata/mockMock.h - vendor/unity/test/testdata/testRunnerGenerator.c - vendor/unity/test/testdata/testRunnerGeneratorSmall.c - vendor/unity/test/testdata/testRunnerGeneratorWithMocks.c - vendor/unity/test/tests/self_assessment_utils.h - vendor/unity/test/tests/test_generate_test_runner.rb - vendor/unity/test/tests/test_unity_arrays.c - vendor/unity/test/tests/test_unity_core.c - vendor/unity/test/tests/test_unity_doubles.c - vendor/unity/test/tests/test_unity_floats.c - vendor/unity/test/tests/test_unity_integers.c - vendor/unity/test/tests/test_unity_integers_64.c - vendor/unity/test/tests/test_unity_memory.c - vendor/unity/test/tests/test_unity_parameterized.c - vendor/unity/test/tests/test_unity_parameterizedDemo.c - vendor/unity/test/tests/test_unity_strings.c - vendor/unity/test/tests/types_for_test.h - vendor/unity/unityConfig.cmake homepage: https://throwtheswitch.org/ceedling licenses: - MIT metadata: homepage_uri: https://throwtheswitch.org/ceedling bug_tracker_uri: https://github.com/ThrowTheSwitch/Ceedling/issues documentation_uri: https://github.com/ThrowTheSwitch/Ceedling/blob/master/docs/CeedlingPacket.md mailing_list_uri: https://groups.google.com/forum/#!categories/throwtheswitch/ceedling source_code_uri: https://github.com/ThrowTheSwitch/Ceedling post_install_message: rdoc_options: [] require_paths: - lib - vendor/cmock/lib required_ruby_version: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: 3.0.0 required_rubygems_version: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '0' requirements: [] rubygems_version: 3.5.22 signing_key: specification_version: 4 summary: Ceedling is a build automation tool for C unit tests and releases. It's a member of the ThrowTheSwitch.org family of tools. It's built upon Unity and CMock. test_files: - spec/config_walkinator_spec.rb - spec/configurator_builder_spec.rb - spec/configurator_helper_spec.rb - spec/configurator_spec.rb - spec/file_finder_helper_spec.rb - spec/gcov/gcov_deployment_spec.rb - spec/gcov/gcov_test_cases_spec.rb - spec/generator_test_results_sanity_checker_spec.rb - spec/generator_test_results_spec.rb - spec/manual/stress_test.rb - spec/parsing_parcels_spec.rb - spec/preprocessinator_extractor_spec.rb - spec/preprocessinator_includes_handler_spec.rb - spec/reportinator_spec.rb - spec/spec_helper.rb - spec/spec_system_helper.rb - spec/support/other_target.yml - spec/support/target.yml - spec/support/test_example.fail - spec/support/test_example.pass - spec/support/test_example_empty.pass - spec/support/test_example_ignore.pass - spec/support/test_example_mangled.pass - spec/support/test_example_with_time.pass - spec/system/deployment_as_gem_spec.rb - spec/system/deployment_as_vendor_spec.rb - spec/system/example_temp_sensor_spec.rb - spec/system/upgrade_as_vendor_spec.rb - spec/system_utils_spec.rb - spec/test_context_extractor_spec.rb - spec/tool_executor_helper_spec.rb - spec/uncategorized_specs_spec.rb