ceedling 0.30.0 → 0.31.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/Gemfile +1 -0
- data/Gemfile.lock +4 -2
- data/README.md +9 -6
- data/assets/auto_link_deep_dependencies/src/a.c +7 -0
- data/assets/auto_link_deep_dependencies/src/b.c +7 -0
- data/assets/auto_link_deep_dependencies/src/c.c +8 -0
- data/assets/auto_link_deep_dependencies/src/internal_inc/a.h +6 -0
- data/assets/auto_link_deep_dependencies/src/internal_inc/b.h +6 -0
- data/assets/auto_link_deep_dependencies/src/internal_inc/c.h +6 -0
- data/assets/auto_link_deep_dependencies/src/internal_inc/never_compiled.h +6 -0
- data/assets/auto_link_deep_dependencies/src/never_compiled.c +6 -0
- data/assets/auto_link_deep_dependencies/test/test_a.c +11 -0
- data/assets/auto_link_deep_dependencies/test/test_b.c +11 -0
- data/assets/auto_link_deep_dependencies/test/test_c.c +11 -0
- data/assets/test_example_file_unity_printf.c +12 -0
- data/assets/test_example_with_parameterized_tests.c +19 -0
- data/assets/tests_with_defines/src/adc_hardware.c +11 -0
- data/assets/tests_with_defines/src/adc_hardware.h +6 -0
- data/assets/tests_with_defines/src/adc_hardware_configurator.c +11 -0
- data/assets/tests_with_defines/src/adc_hardware_configurator.h +10 -0
- data/assets/tests_with_defines/test/test_adc_hardware.c +21 -0
- data/assets/tests_with_defines/test/test_adc_hardware_special.c +21 -0
- data/bin/ceedling +0 -1
- data/ceedling.gemspec +5 -4
- data/ceedling.sublime-project +28 -0
- data/ceedling.sublime-workspace +452 -0
- data/config/test_environment.rb +0 -1
- data/docs/CeedlingPacket.md +59 -6
- data/examples/blinky/project.yml +3 -1
- data/examples/blinky/rakefile.rb +1 -2
- data/examples/temp_sensor/build/test/cache/AdcConductor.h +20 -0
- data/examples/temp_sensor/build/test/cache/AdcHardware.h +16 -0
- data/examples/temp_sensor/build/test/cache/AdcHardwareConfigurator.h +14 -0
- data/examples/temp_sensor/build/test/cache/AdcModel.h +20 -0
- data/examples/temp_sensor/build/test/cache/AdcTemperatureSensor.h +14 -0
- data/examples/temp_sensor/build/test/cache/Executor.h +12 -0
- data/examples/temp_sensor/build/test/cache/IntrinsicsWrapper.h +9 -0
- data/examples/temp_sensor/build/test/cache/Model.h +10 -0
- data/examples/temp_sensor/build/test/cache/TaskScheduler.h +16 -0
- data/examples/temp_sensor/build/test/cache/TemperatureCalculator.h +10 -0
- data/examples/temp_sensor/build/test/cache/TemperatureFilter.h +14 -0
- data/examples/temp_sensor/build/test/cache/TestAdcConductor.c +169 -0
- data/examples/temp_sensor/build/test/cache/TestAdcHardware.c +82 -0
- data/examples/temp_sensor/build/test/cache/TestAdcModel.c +59 -0
- data/examples/temp_sensor/build/test/cache/TestExecutor.c +63 -0
- data/examples/temp_sensor/build/test/cache/TestMain.c +43 -0
- data/examples/temp_sensor/build/test/cache/TestModel.c +34 -0
- data/examples/temp_sensor/build/test/cache/TestTaskScheduler.c +204 -0
- data/examples/temp_sensor/build/test/cache/TestTemperatureCalculator.c +70 -0
- data/examples/temp_sensor/build/test/cache/TestTemperatureFilter.c +154 -0
- data/examples/temp_sensor/build/test/cache/TestTimerConductor.c +57 -0
- data/examples/temp_sensor/build/test/cache/TestTimerHardware.c +47 -0
- data/examples/temp_sensor/build/test/cache/TestTimerModel.c +31 -0
- data/examples/temp_sensor/build/test/cache/TestUsartBaudRateRegisterCalculator.c +38 -0
- data/examples/temp_sensor/build/test/cache/TestUsartConductor.c +73 -0
- data/examples/temp_sensor/build/test/cache/TestUsartHardware.c +66 -0
- data/examples/temp_sensor/build/test/cache/TestUsartModel.c +73 -0
- data/examples/temp_sensor/build/test/cache/TimerConductor.h +12 -0
- data/examples/temp_sensor/build/test/cache/TimerConfigurator.h +24 -0
- data/examples/temp_sensor/build/test/cache/TimerHardware.h +10 -0
- data/examples/temp_sensor/build/test/cache/TimerInterruptHandler.h +14 -0
- data/examples/temp_sensor/build/test/cache/TimerModel.h +10 -0
- data/examples/temp_sensor/build/test/cache/UsartBaudRateRegisterCalculator.h +10 -0
- data/examples/temp_sensor/build/test/cache/UsartConductor.h +9 -0
- data/examples/temp_sensor/build/test/cache/UsartConfigurator.h +20 -0
- data/examples/temp_sensor/build/test/cache/UsartHardware.h +12 -0
- data/examples/temp_sensor/build/test/cache/UsartModel.h +14 -0
- data/examples/temp_sensor/build/test/cache/UsartPutChar.h +10 -0
- data/examples/temp_sensor/build/test/cache/defines_dependency.yml +77 -0
- data/examples/temp_sensor/build/test/cache/input.yml +310 -0
- data/examples/temp_sensor/build/test/dependencies/AdcConductor.d +2 -0
- data/examples/temp_sensor/build/test/dependencies/AdcHardware.d +3 -0
- data/examples/temp_sensor/build/test/dependencies/AdcModel.d +3 -0
- data/examples/temp_sensor/build/test/dependencies/Executor.d +3 -0
- data/examples/temp_sensor/build/test/dependencies/Main.d +11 -0
- data/examples/temp_sensor/build/test/dependencies/MockAdcConductor.d +6 -0
- data/examples/temp_sensor/build/test/dependencies/MockAdcHardware.d +6 -0
- data/examples/temp_sensor/build/test/dependencies/MockAdcHardwareConfigurator.d +8 -0
- data/examples/temp_sensor/build/test/dependencies/MockAdcModel.d +6 -0
- data/examples/temp_sensor/build/test/dependencies/MockAdcTemperatureSensor.d +8 -0
- data/examples/temp_sensor/build/test/dependencies/MockExecutor.d +6 -0
- data/examples/temp_sensor/build/test/dependencies/MockIntrinsicsWrapper.d +7 -0
- data/examples/temp_sensor/build/test/dependencies/MockModel.d +6 -0
- data/examples/temp_sensor/build/test/dependencies/MockTaskScheduler.d +7 -0
- data/examples/temp_sensor/build/test/dependencies/MockTemperatureCalculator.d +8 -0
- data/examples/temp_sensor/build/test/dependencies/MockTemperatureFilter.d +8 -0
- data/examples/temp_sensor/build/test/dependencies/MockTimerConductor.d +7 -0
- data/examples/temp_sensor/build/test/dependencies/MockTimerConfigurator.d +8 -0
- data/examples/temp_sensor/build/test/dependencies/MockTimerHardware.d +7 -0
- data/examples/temp_sensor/build/test/dependencies/MockTimerInterruptHandler.d +8 -0
- data/examples/temp_sensor/build/test/dependencies/MockTimerModel.d +6 -0
- data/examples/temp_sensor/build/test/dependencies/MockUsartBaudRateRegisterCalculator.d +8 -0
- data/examples/temp_sensor/build/test/dependencies/MockUsartConductor.d +7 -0
- data/examples/temp_sensor/build/test/dependencies/MockUsartConfigurator.d +8 -0
- data/examples/temp_sensor/build/test/dependencies/MockUsartHardware.d +7 -0
- data/examples/temp_sensor/build/test/dependencies/MockUsartModel.d +6 -0
- data/examples/temp_sensor/build/test/dependencies/MockUsartPutChar.d +6 -0
- data/examples/temp_sensor/build/test/dependencies/Model.d +2 -0
- data/examples/temp_sensor/build/test/dependencies/TaskScheduler.d +2 -0
- data/examples/temp_sensor/build/test/dependencies/TemperatureCalculator.d +2 -0
- data/examples/temp_sensor/build/test/dependencies/TemperatureFilter.d +2 -0
- data/examples/temp_sensor/build/test/dependencies/TestAdcConductor.d +6 -0
- data/examples/temp_sensor/build/test/dependencies/TestAdcConductor_runner.d +8 -0
- data/examples/temp_sensor/build/test/dependencies/TestAdcHardware.d +7 -0
- data/examples/temp_sensor/build/test/dependencies/TestAdcHardware_runner.d +9 -0
- data/examples/temp_sensor/build/test/dependencies/TestAdcModel.d +7 -0
- data/examples/temp_sensor/build/test/dependencies/TestAdcModel_runner.d +10 -0
- data/examples/temp_sensor/build/test/dependencies/TestExecutor.d +8 -0
- data/examples/temp_sensor/build/test/dependencies/TestExecutor_runner.d +11 -0
- data/examples/temp_sensor/build/test/dependencies/TestMain.d +4 -0
- data/examples/temp_sensor/build/test/dependencies/TestMain_runner.d +6 -0
- data/examples/temp_sensor/build/test/dependencies/TestModel.d +6 -0
- data/examples/temp_sensor/build/test/dependencies/TestModel_runner.d +8 -0
- data/examples/temp_sensor/build/test/dependencies/TestTaskScheduler.d +4 -0
- data/examples/temp_sensor/build/test/dependencies/TestTaskScheduler_runner.d +4 -0
- data/examples/temp_sensor/build/test/dependencies/TestTemperatureCalculator.d +5 -0
- data/examples/temp_sensor/build/test/dependencies/TestTemperatureCalculator_runner.d +4 -0
- data/examples/temp_sensor/build/test/dependencies/TestTemperatureFilter.d +4 -0
- data/examples/temp_sensor/build/test/dependencies/TestTemperatureFilter_runner.d +4 -0
- data/examples/temp_sensor/build/test/dependencies/TestTimerConductor.d +7 -0
- data/examples/temp_sensor/build/test/dependencies/TestTimerConductor_runner.d +10 -0
- data/examples/temp_sensor/build/test/dependencies/TestTimerHardware.d +5 -0
- data/examples/temp_sensor/build/test/dependencies/TestTimerHardware_runner.d +8 -0
- data/examples/temp_sensor/build/test/dependencies/TestTimerModel.d +5 -0
- data/examples/temp_sensor/build/test/dependencies/TestTimerModel_runner.d +7 -0
- data/examples/temp_sensor/build/test/dependencies/TestUsartBaudRateRegisterCalculator.d +5 -0
- data/examples/temp_sensor/build/test/dependencies/TestUsartBaudRateRegisterCalculator_runner.d +4 -0
- data/examples/temp_sensor/build/test/dependencies/TestUsartConductor.d +7 -0
- data/examples/temp_sensor/build/test/dependencies/TestUsartConductor_runner.d +9 -0
- data/examples/temp_sensor/build/test/dependencies/TestUsartHardware.d +6 -0
- data/examples/temp_sensor/build/test/dependencies/TestUsartHardware_runner.d +8 -0
- data/examples/temp_sensor/build/test/dependencies/TestUsartModel.d +7 -0
- data/examples/temp_sensor/build/test/dependencies/TestUsartModel_runner.d +9 -0
- data/examples/temp_sensor/build/test/dependencies/TimerConductor.d +3 -0
- data/examples/temp_sensor/build/test/dependencies/TimerHardware.d +2 -0
- data/examples/temp_sensor/build/test/dependencies/TimerModel.d +2 -0
- data/examples/temp_sensor/build/test/dependencies/UnityHelper.d +4 -0
- data/examples/temp_sensor/build/test/dependencies/UsartBaudRateRegisterCalculator.d +3 -0
- data/examples/temp_sensor/build/test/dependencies/UsartConductor.d +3 -0
- data/examples/temp_sensor/build/test/dependencies/UsartHardware.d +2 -0
- data/examples/temp_sensor/build/test/dependencies/UsartModel.d +3 -0
- data/examples/temp_sensor/build/test/dependencies/cmock.d +6 -0
- data/examples/temp_sensor/build/test/dependencies/unity.d +4 -0
- data/examples/temp_sensor/build/test/mocks/MockAdcConductor.c +391 -0
- data/examples/temp_sensor/build/test/mocks/MockAdcConductor.h +64 -0
- data/examples/temp_sensor/build/test/mocks/MockAdcHardware.c +313 -0
- data/examples/temp_sensor/build/test/mocks/MockAdcHardware.h +58 -0
- data/examples/temp_sensor/build/test/mocks/MockAdcHardwareConfigurator.c +218 -0
- data/examples/temp_sensor/build/test/mocks/MockAdcHardwareConfigurator.h +52 -0
- data/examples/temp_sensor/build/test/mocks/MockAdcModel.c +453 -0
- data/examples/temp_sensor/build/test/mocks/MockAdcModel.h +64 -0
- data/examples/temp_sensor/build/test/mocks/MockAdcTemperatureSensor.c +252 -0
- data/examples/temp_sensor/build/test/mocks/MockAdcTemperatureSensor.h +52 -0
- data/examples/temp_sensor/build/test/mocks/MockExecutor.c +174 -0
- data/examples/temp_sensor/build/test/mocks/MockExecutor.h +46 -0
- data/examples/temp_sensor/build/test/mocks/MockIntrinsicsWrapper.c +157 -0
- data/examples/temp_sensor/build/test/mocks/MockIntrinsicsWrapper.h +46 -0
- data/examples/temp_sensor/build/test/mocks/MockModel.c +96 -0
- data/examples/temp_sensor/build/test/mocks/MockModel.h +40 -0
- data/examples/temp_sensor/build/test/mocks/MockTaskScheduler.c +326 -0
- data/examples/temp_sensor/build/test/mocks/MockTaskScheduler.h +58 -0
- data/examples/temp_sensor/build/test/mocks/MockTemperatureCalculator.c +126 -0
- data/examples/temp_sensor/build/test/mocks/MockTemperatureCalculator.h +40 -0
- data/examples/temp_sensor/build/test/mocks/MockTemperatureFilter.c +248 -0
- data/examples/temp_sensor/build/test/mocks/MockTemperatureFilter.h +52 -0
- data/examples/temp_sensor/build/test/mocks/MockTimerConductor.c +157 -0
- data/examples/temp_sensor/build/test/mocks/MockTimerConductor.h +46 -0
- data/examples/temp_sensor/build/test/mocks/MockTimerConfigurator.c +523 -0
- data/examples/temp_sensor/build/test/mocks/MockTimerConfigurator.h +82 -0
- data/examples/temp_sensor/build/test/mocks/MockTimerHardware.c +96 -0
- data/examples/temp_sensor/build/test/mocks/MockTimerHardware.h +40 -0
- data/examples/temp_sensor/build/test/mocks/MockTimerInterruptHandler.c +248 -0
- data/examples/temp_sensor/build/test/mocks/MockTimerInterruptHandler.h +52 -0
- data/examples/temp_sensor/build/test/mocks/MockTimerModel.c +109 -0
- data/examples/temp_sensor/build/test/mocks/MockTimerModel.h +40 -0
- data/examples/temp_sensor/build/test/mocks/MockUsartBaudRateRegisterCalculator.c +133 -0
- data/examples/temp_sensor/build/test/mocks/MockUsartBaudRateRegisterCalculator.h +40 -0
- data/examples/temp_sensor/build/test/mocks/MockUsartConductor.c +157 -0
- data/examples/temp_sensor/build/test/mocks/MockUsartConductor.h +46 -0
- data/examples/temp_sensor/build/test/mocks/MockUsartConfigurator.c +414 -0
- data/examples/temp_sensor/build/test/mocks/MockUsartConfigurator.h +70 -0
- data/examples/temp_sensor/build/test/mocks/MockUsartHardware.c +183 -0
- data/examples/temp_sensor/build/test/mocks/MockUsartHardware.h +46 -0
- data/examples/temp_sensor/build/test/mocks/MockUsartModel.c +269 -0
- data/examples/temp_sensor/build/test/mocks/MockUsartModel.h +52 -0
- data/examples/temp_sensor/build/test/mocks/MockUsartPutChar.c +109 -0
- data/examples/temp_sensor/build/test/mocks/MockUsartPutChar.h +40 -0
- data/examples/temp_sensor/build/test/out/TestAdcConductor.out +0 -0
- data/examples/temp_sensor/build/test/out/TestAdcHardware.out +0 -0
- data/examples/temp_sensor/build/test/out/TestAdcModel.out +0 -0
- data/examples/temp_sensor/build/test/out/TestExecutor.out +0 -0
- data/examples/temp_sensor/build/test/out/TestMain.out +0 -0
- data/examples/temp_sensor/build/test/out/TestModel.out +0 -0
- data/examples/temp_sensor/build/test/out/TestTaskScheduler.out +0 -0
- data/examples/temp_sensor/build/test/out/TestTemperatureCalculator.out +0 -0
- data/examples/temp_sensor/build/test/out/TestTemperatureFilter.out +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerConductor.out +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerHardware.out +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerModel.out +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartBaudRateRegisterCalculator.out +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartConductor.out +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartHardware.out +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartModel.out +0 -0
- data/examples/temp_sensor/build/test/out/c/AdcConductor.o +0 -0
- data/examples/temp_sensor/build/test/out/c/AdcHardware.o +0 -0
- data/examples/temp_sensor/build/test/out/c/AdcModel.o +0 -0
- data/examples/temp_sensor/build/test/out/c/Executor.o +0 -0
- data/examples/temp_sensor/build/test/out/c/Main.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockAdcConductor.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockAdcHardware.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockAdcHardwareConfigurator.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockAdcModel.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockAdcTemperatureSensor.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockExecutor.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockIntrinsicsWrapper.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockModel.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockTaskScheduler.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockTemperatureCalculator.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockTemperatureFilter.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockTimerConductor.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockTimerConfigurator.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockTimerHardware.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockTimerInterruptHandler.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockTimerModel.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockUsartBaudRateRegisterCalculator.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockUsartConductor.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockUsartConfigurator.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockUsartHardware.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockUsartModel.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockUsartPutChar.o +0 -0
- data/examples/temp_sensor/build/test/out/c/Model.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TaskScheduler.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TemperatureCalculator.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TemperatureFilter.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestAdcConductor.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestAdcConductor_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestAdcHardware.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestAdcHardware_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestAdcModel.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestAdcModel_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestExecutor.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestExecutor_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestMain.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestMain_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestModel.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestModel_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestTaskScheduler.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestTaskScheduler_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestTemperatureCalculator.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestTemperatureCalculator_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestTemperatureFilter.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestTemperatureFilter_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestTimerConductor.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestTimerConductor_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestTimerHardware.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestTimerHardware_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestTimerModel.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestTimerModel_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestUsartBaudRateRegisterCalculator.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestUsartBaudRateRegisterCalculator_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestUsartConductor.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestUsartConductor_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestUsartHardware.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestUsartHardware_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestUsartModel.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestUsartModel_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TimerConductor.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TimerHardware.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TimerModel.o +0 -0
- data/examples/temp_sensor/build/test/out/c/UnityHelper.o +0 -0
- data/examples/temp_sensor/build/test/out/c/UsartBaudRateRegisterCalculator.o +0 -0
- data/examples/temp_sensor/build/test/out/c/UsartConductor.o +0 -0
- data/examples/temp_sensor/build/test/out/c/UsartHardware.o +0 -0
- data/examples/temp_sensor/build/test/out/c/UsartModel.o +0 -0
- data/examples/temp_sensor/build/test/out/c/cmock.o +0 -0
- data/examples/temp_sensor/build/test/out/c/unity.o +0 -0
- data/examples/temp_sensor/build/test/preprocess/files/AdcConductor.h +20 -0
- data/examples/temp_sensor/build/test/preprocess/files/AdcHardware.h +16 -0
- data/examples/temp_sensor/build/test/preprocess/files/AdcHardwareConfigurator.h +14 -0
- data/examples/temp_sensor/build/test/preprocess/files/AdcModel.h +20 -0
- data/examples/temp_sensor/build/test/preprocess/files/AdcTemperatureSensor.h +14 -0
- data/examples/temp_sensor/build/test/preprocess/files/Executor.h +12 -0
- data/examples/temp_sensor/build/test/preprocess/files/IntrinsicsWrapper.h +9 -0
- data/examples/temp_sensor/build/test/preprocess/files/Model.h +10 -0
- data/examples/temp_sensor/build/test/preprocess/files/TaskScheduler.h +16 -0
- data/examples/temp_sensor/build/test/preprocess/files/TemperatureCalculator.h +10 -0
- data/examples/temp_sensor/build/test/preprocess/files/TemperatureFilter.h +14 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestAdcConductor.c +169 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestAdcHardware.c +82 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestAdcModel.c +59 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestExecutor.c +63 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestMain.c +43 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestModel.c +34 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestTaskScheduler.c +204 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestTemperatureCalculator.c +70 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestTemperatureFilter.c +154 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestTimerConductor.c +57 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestTimerHardware.c +47 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestTimerModel.c +31 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestUsartBaudRateRegisterCalculator.c +38 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestUsartConductor.c +73 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestUsartHardware.c +66 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestUsartModel.c +73 -0
- data/examples/temp_sensor/build/test/preprocess/files/TimerConductor.h +12 -0
- data/examples/temp_sensor/build/test/preprocess/files/TimerConfigurator.h +24 -0
- data/examples/temp_sensor/build/test/preprocess/files/TimerHardware.h +10 -0
- data/examples/temp_sensor/build/test/preprocess/files/TimerInterruptHandler.h +14 -0
- data/examples/temp_sensor/build/test/preprocess/files/TimerModel.h +10 -0
- data/examples/temp_sensor/build/test/preprocess/files/UsartBaudRateRegisterCalculator.h +10 -0
- data/examples/temp_sensor/build/test/preprocess/files/UsartConductor.h +9 -0
- data/examples/temp_sensor/build/test/preprocess/files/UsartConfigurator.h +20 -0
- data/examples/temp_sensor/build/test/preprocess/files/UsartHardware.h +12 -0
- data/examples/temp_sensor/build/test/preprocess/files/UsartModel.h +14 -0
- data/examples/temp_sensor/build/test/preprocess/files/UsartPutChar.h +10 -0
- data/examples/temp_sensor/build/test/preprocess/includes/AdcConductor.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/AdcHardware.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/AdcHardwareConfigurator.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/AdcModel.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/AdcTemperatureSensor.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/Executor.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/IntrinsicsWrapper.h +1 -0
- data/examples/temp_sensor/build/test/preprocess/includes/Model.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TaskScheduler.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TemperatureCalculator.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TemperatureFilter.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestAdcConductor.c +7 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestAdcHardware.c +6 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestAdcModel.c +7 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestExecutor.c +9 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestMain.c +5 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestModel.c +6 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestTaskScheduler.c +4 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestTemperatureCalculator.c +4 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestTemperatureFilter.c +4 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestTimerConductor.c +7 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestTimerHardware.c +5 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestTimerModel.c +5 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestUsartBaudRateRegisterCalculator.c +4 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestUsartConductor.c +7 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestUsartHardware.c +6 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestUsartModel.c +7 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TimerConductor.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TimerConfigurator.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TimerHardware.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TimerInterruptHandler.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TimerModel.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/UsartBaudRateRegisterCalculator.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/UsartConductor.h +1 -0
- data/examples/temp_sensor/build/test/preprocess/includes/UsartConfigurator.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/UsartHardware.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/UsartModel.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/UsartPutChar.h +2 -0
- data/examples/temp_sensor/build/test/results/TestAdcConductor.pass +46 -0
- data/examples/temp_sensor/build/test/results/TestAdcHardware.pass +30 -0
- data/examples/temp_sensor/build/test/results/TestAdcModel.pass +26 -0
- data/examples/temp_sensor/build/test/results/TestExecutor.pass +22 -0
- data/examples/temp_sensor/build/test/results/TestMain.pass +18 -0
- data/examples/temp_sensor/build/test/results/TestModel.pass +18 -0
- data/examples/temp_sensor/build/test/results/TestTaskScheduler.pass +46 -0
- data/examples/temp_sensor/build/test/results/TestTemperatureCalculator.pass +22 -0
- data/examples/temp_sensor/build/test/results/TestTemperatureFilter.pass +30 -0
- data/examples/temp_sensor/build/test/results/TestTimerConductor.pass +22 -0
- data/examples/temp_sensor/build/test/results/TestTimerHardware.pass +18 -0
- data/examples/temp_sensor/build/test/results/TestTimerModel.pass +18 -0
- data/examples/temp_sensor/build/test/results/TestUsartBaudRateRegisterCalculator.pass +18 -0
- data/examples/temp_sensor/build/test/results/TestUsartConductor.pass +26 -0
- data/examples/temp_sensor/build/test/results/TestUsartHardware.pass +22 -0
- data/examples/temp_sensor/build/test/results/TestUsartModel.pass +30 -0
- data/examples/temp_sensor/build/test/runners/TestAdcConductor_runner.c +105 -0
- data/examples/temp_sensor/build/test/runners/TestAdcHardware_runner.c +97 -0
- data/examples/temp_sensor/build/test/runners/TestAdcModel_runner.c +99 -0
- data/examples/temp_sensor/build/test/runners/TestExecutor_runner.c +105 -0
- data/examples/temp_sensor/build/test/runners/TestMain_runner.c +87 -0
- data/examples/temp_sensor/build/test/runners/TestModel_runner.c +91 -0
- data/examples/temp_sensor/build/test/runners/TestTaskScheduler_runner.c +95 -0
- data/examples/temp_sensor/build/test/runners/TestTemperatureCalculator_runner.c +83 -0
- data/examples/temp_sensor/build/test/runners/TestTemperatureFilter_runner.c +87 -0
- data/examples/temp_sensor/build/test/runners/TestTimerConductor_runner.c +97 -0
- data/examples/temp_sensor/build/test/runners/TestTimerHardware_runner.c +87 -0
- data/examples/temp_sensor/build/test/runners/TestTimerModel_runner.c +87 -0
- data/examples/temp_sensor/build/test/runners/TestUsartBaudRateRegisterCalculator_runner.c +81 -0
- data/examples/temp_sensor/build/test/runners/TestUsartConductor_runner.c +99 -0
- data/examples/temp_sensor/build/test/runners/TestUsartHardware_runner.c +93 -0
- data/examples/temp_sensor/build/test/runners/TestUsartModel_runner.c +97 -0
- data/examples/temp_sensor/project.yml +3 -1
- data/lib/ceedling/configurator.rb +6 -1
- data/lib/ceedling/configurator_builder.rb +18 -6
- data/lib/ceedling/configurator_setup.rb +1 -0
- data/lib/ceedling/constants.rb +1 -1
- data/lib/ceedling/defaults.rb +23 -0
- data/lib/ceedling/objects.yml +2 -0
- data/lib/ceedling/preprocessinator.rb +17 -8
- data/lib/ceedling/preprocessinator_extractor.rb +23 -0
- data/lib/ceedling/preprocessinator_file_handler.rb +13 -0
- data/lib/ceedling/preprocessinator_includes_handler.rb +61 -53
- data/lib/ceedling/project_config_manager.rb +2 -2
- data/lib/ceedling/rakefile.rb +0 -1
- data/lib/ceedling/rules_tests.rake +1 -1
- data/lib/ceedling/setupinator.rb +1 -1
- data/lib/ceedling/tasks_tests.rake +8 -6
- data/lib/ceedling/test_invoker.rb +1 -0
- data/lib/ceedling/version.rb +1 -1
- data/out.fail +24 -0
- data/plugins/bullseye/bullseye.rake +5 -5
- data/plugins/dependencies/README.md +1 -1
- data/plugins/dependencies/dependencies.rake +3 -0
- data/plugins/dependencies/lib/dependencies.rb +9 -3
- data/plugins/gcov/README.md +21 -0
- data/plugins/gcov/config/defaults.yml +4 -0
- data/plugins/gcov/gcov.rake +5 -5
- data/plugins/gcov/lib/gcov.rb +8 -5
- data/plugins/gcov/lib/gcovr_reportinator.rb +2 -2
- data/plugins/gcov/lib/reportgenerator_reportinator.rb +45 -3
- data/spec/gcov/gcov_deployment_spec.rb +1 -0
- data/spec/gcov/gcov_test_cases_spec.rb +71 -2
- data/spec/preprocessinator_extractor_spec.rb +36 -0
- data/spec/preprocessinator_includes_handler_spec.rb +70 -19
- data/spec/spec_helper.rb +0 -1
- data/spec/spec_system_helper.rb +119 -79
- data/spec/system/deployment_spec.rb +30 -0
- data/vendor/c_exception/README.md +4 -6
- data/vendor/c_exception/docs/CException.md +2 -2
- data/vendor/c_exception/lib/CException.h +1 -1
- data/vendor/c_exception/lib/meson.build +2 -2
- data/vendor/c_exception/meson.build +2 -36
- data/vendor/cmock/README.md +9 -4
- data/vendor/cmock/docs/CMock_Summary.md +26 -1
- data/vendor/cmock/lib/cmock.rb +16 -9
- data/vendor/cmock/lib/cmock_config.rb +1 -0
- data/vendor/cmock/lib/cmock_generator.rb +27 -9
- data/vendor/cmock/lib/cmock_generator_plugin_cexception.rb +1 -0
- data/vendor/cmock/lib/cmock_generator_plugin_ignore_stateless.rb +85 -0
- data/vendor/cmock/lib/cmock_generator_plugin_return_thru_ptr.rb +4 -4
- data/vendor/cmock/lib/cmock_generator_utils.rb +6 -3
- data/vendor/cmock/lib/cmock_header_parser.rb +40 -14
- data/vendor/cmock/meson.build +1 -37
- data/vendor/cmock/src/cmock.h +13 -7
- data/vendor/cmock/src/meson.build +1 -1
- data/vendor/cmock/test/system/test_interactions/ignore_and_return_stateless.yml +325 -0
- data/vendor/cmock/test/unit/cmock_generator_main_test.rb +3 -0
- data/vendor/cmock/test/unit/cmock_generator_plugin_cexception_test.rb +12 -0
- data/vendor/cmock/test/unit/cmock_generator_plugin_ignore_stateless_test.rb +116 -0
- data/vendor/cmock/test/unit/cmock_generator_plugin_return_thru_ptr_test.rb +4 -4
- data/vendor/cmock/test/unit/cmock_generator_utils_test.rb +14 -9
- data/vendor/cmock/test/unit/cmock_header_parser_test.rb +129 -3
- data/vendor/cmock/test/unit/cmock_plugin_manager_test.rb +2 -1
- data/vendor/cmock/vendor/c_exception/README.md +4 -6
- data/vendor/cmock/vendor/c_exception/docs/CException.md +2 -2
- data/vendor/cmock/vendor/c_exception/lib/CException.h +1 -1
- data/vendor/cmock/vendor/c_exception/lib/meson.build +2 -2
- data/vendor/cmock/vendor/c_exception/meson.build +2 -36
- data/vendor/cmock/vendor/unity/CMakeLists.txt +32 -6
- data/vendor/cmock/vendor/unity/LICENSE.txt +1 -1
- data/vendor/cmock/vendor/unity/README.md +13 -4
- data/vendor/cmock/vendor/unity/auto/generate_module.rb +11 -10
- data/vendor/cmock/vendor/unity/auto/generate_test_runner.rb +2 -2
- data/vendor/cmock/vendor/unity/auto/run_test.erb +1 -1
- data/vendor/cmock/vendor/unity/meson.build +1 -35
- data/vendor/cmock/vendor/unity/src/meson.build +1 -1
- data/vendor/cmock/vendor/unity/src/unity.c +5 -4
- data/vendor/cmock/vendor/unity/src/unity.h +6 -6
- data/vendor/cmock/vendor/unity/src/unity_internals.h +15 -6
- data/vendor/cmock/vendor/unity/test/Makefile +1 -0
- data/vendor/cmock/vendor/unity/test/rakefile_helper.rb +2 -2
- data/vendor/unity/CMakeLists.txt +32 -6
- data/vendor/unity/LICENSE.txt +1 -1
- data/vendor/unity/README.md +13 -4
- data/vendor/unity/auto/generate_module.rb +11 -10
- data/vendor/unity/auto/generate_test_runner.rb +2 -2
- data/vendor/unity/auto/run_test.erb +1 -1
- data/vendor/unity/meson.build +1 -35
- data/vendor/unity/src/meson.build +1 -1
- data/vendor/unity/src/unity.c +5 -4
- data/vendor/unity/src/unity.h +6 -6
- data/vendor/unity/src/unity_internals.h +15 -6
- data/vendor/unity/test/Makefile +1 -0
- data/vendor/unity/test/rakefile_helper.rb +2 -2
- metadata +409 -271
- data/assets/project_with_guts_gcov_abortonuncovered.yml +0 -93
- data/examples/temp_sensor/rakefile.rb +0 -6
- data/vendor/c_exception/vendor/unity/README.md +0 -220
- data/vendor/c_exception/vendor/unity/auto/colour_prompt.rb +0 -118
- data/vendor/c_exception/vendor/unity/auto/colour_reporter.rb +0 -39
- data/vendor/c_exception/vendor/unity/auto/generate_config.yml +0 -36
- data/vendor/c_exception/vendor/unity/auto/generate_module.rb +0 -308
- data/vendor/c_exception/vendor/unity/auto/generate_test_runner.rb +0 -437
- data/vendor/c_exception/vendor/unity/auto/parse_output.rb +0 -220
- data/vendor/c_exception/vendor/unity/auto/stylize_as_junit.rb +0 -252
- data/vendor/c_exception/vendor/unity/auto/test_file_filter.rb +0 -25
- data/vendor/c_exception/vendor/unity/auto/type_sanitizer.rb +0 -6
- data/vendor/c_exception/vendor/unity/auto/unity_test_summary.py +0 -139
- data/vendor/c_exception/vendor/unity/auto/unity_test_summary.rb +0 -136
- data/vendor/c_exception/vendor/unity/auto/unity_to_junit.py +0 -146
- data/vendor/c_exception/vendor/unity/docs/ThrowTheSwitchCodingStandard.md +0 -207
- data/vendor/c_exception/vendor/unity/docs/UnityAssertionsCheatSheetSuitableforPrintingandPossiblyFraming.pdf +0 -0
- data/vendor/c_exception/vendor/unity/docs/UnityAssertionsReference.md +0 -716
- data/vendor/c_exception/vendor/unity/docs/UnityConfigurationGuide.md +0 -398
- data/vendor/c_exception/vendor/unity/docs/UnityGettingStartedGuide.md +0 -191
- data/vendor/c_exception/vendor/unity/docs/UnityHelperScriptsGuide.md +0 -242
- data/vendor/c_exception/vendor/unity/docs/license.txt +0 -21
- data/vendor/c_exception/vendor/unity/examples/example_1/makefile +0 -71
- data/vendor/c_exception/vendor/unity/examples/example_1/readme.txt +0 -5
- data/vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode.c +0 -24
- data/vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode.h +0 -3
- data/vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode2.c +0 -11
- data/vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode2.h +0 -2
- data/vendor/c_exception/vendor/unity/examples/example_1/test/TestProductionCode.c +0 -62
- data/vendor/c_exception/vendor/unity/examples/example_1/test/TestProductionCode2.c +0 -31
- data/vendor/c_exception/vendor/unity/examples/example_1/test/test_runners/TestProductionCode2_Runner.c +0 -53
- data/vendor/c_exception/vendor/unity/examples/example_1/test/test_runners/TestProductionCode_Runner.c +0 -57
- data/vendor/c_exception/vendor/unity/examples/example_2/makefile +0 -70
- data/vendor/c_exception/vendor/unity/examples/example_2/readme.txt +0 -5
- data/vendor/c_exception/vendor/unity/examples/example_2/src/ProductionCode.c +0 -24
- data/vendor/c_exception/vendor/unity/examples/example_2/src/ProductionCode.h +0 -3
- data/vendor/c_exception/vendor/unity/examples/example_2/src/ProductionCode2.c +0 -11
- data/vendor/c_exception/vendor/unity/examples/example_2/src/ProductionCode2.h +0 -2
- data/vendor/c_exception/vendor/unity/examples/example_2/test/TestProductionCode.c +0 -64
- data/vendor/c_exception/vendor/unity/examples/example_2/test/TestProductionCode2.c +0 -33
- data/vendor/c_exception/vendor/unity/examples/example_2/test/test_runners/TestProductionCode2_Runner.c +0 -9
- data/vendor/c_exception/vendor/unity/examples/example_2/test/test_runners/TestProductionCode_Runner.c +0 -11
- data/vendor/c_exception/vendor/unity/examples/example_2/test/test_runners/all_tests.c +0 -12
- data/vendor/c_exception/vendor/unity/examples/example_3/helper/UnityHelper.c +0 -10
- data/vendor/c_exception/vendor/unity/examples/example_3/helper/UnityHelper.h +0 -12
- data/vendor/c_exception/vendor/unity/examples/example_3/rakefile.rb +0 -43
- data/vendor/c_exception/vendor/unity/examples/example_3/rakefile_helper.rb +0 -249
- data/vendor/c_exception/vendor/unity/examples/example_3/readme.txt +0 -13
- data/vendor/c_exception/vendor/unity/examples/example_3/src/ProductionCode.c +0 -24
- data/vendor/c_exception/vendor/unity/examples/example_3/src/ProductionCode.h +0 -3
- data/vendor/c_exception/vendor/unity/examples/example_3/src/ProductionCode2.c +0 -11
- data/vendor/c_exception/vendor/unity/examples/example_3/src/ProductionCode2.h +0 -2
- data/vendor/c_exception/vendor/unity/examples/example_3/target_gcc_32.yml +0 -46
- data/vendor/c_exception/vendor/unity/examples/example_3/test/TestProductionCode.c +0 -62
- data/vendor/c_exception/vendor/unity/examples/example_3/test/TestProductionCode2.c +0 -31
- data/vendor/c_exception/vendor/unity/examples/unity_config.h +0 -237
- data/vendor/c_exception/vendor/unity/extras/eclipse/error_parsers.txt +0 -26
- data/vendor/c_exception/vendor/unity/extras/fixture/rakefile.rb +0 -48
- data/vendor/c_exception/vendor/unity/extras/fixture/rakefile_helper.rb +0 -178
- data/vendor/c_exception/vendor/unity/extras/fixture/readme.txt +0 -9
- data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.c +0 -432
- data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.h +0 -83
- data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_internals.h +0 -51
- data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +0 -47
- data/vendor/c_exception/vendor/unity/extras/fixture/test/Makefile +0 -74
- data/vendor/c_exception/vendor/unity/extras/fixture/test/main/AllTests.c +0 -22
- data/vendor/c_exception/vendor/unity/extras/fixture/test/template_fixture_tests.c +0 -39
- data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_Test.c +0 -543
- data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +0 -57
- data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.c +0 -57
- data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.h +0 -17
- data/vendor/c_exception/vendor/unity/release/build.info +0 -2
- data/vendor/c_exception/vendor/unity/release/version.info +0 -2
- data/vendor/c_exception/vendor/unity/src/unity.c +0 -1517
- data/vendor/c_exception/vendor/unity/src/unity.h +0 -339
- data/vendor/c_exception/vendor/unity/src/unity_internals.h +0 -784
- data/vendor/c_exception/vendor/unity/test/Makefile +0 -63
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_cmd.c +0 -61
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_def.c +0 -57
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_head1.c +0 -55
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_head1.h +0 -15
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_cmd.c +0 -80
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_def.c +0 -76
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_head1.c +0 -75
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_head1.h +0 -13
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new1.c +0 -89
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new2.c +0 -89
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_param.c +0 -77
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run1.c +0 -89
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run2.c +0 -89
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_yaml.c +0 -90
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_new1.c +0 -67
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_new2.c +0 -70
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_param.c +0 -58
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_run1.c +0 -67
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_run2.c +0 -70
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_yaml.c +0 -71
- data/vendor/c_exception/vendor/unity/test/rakefile +0 -125
- data/vendor/c_exception/vendor/unity/test/rakefile_helper.rb +0 -260
- data/vendor/c_exception/vendor/unity/test/spec/generate_module_existing_file_spec.rb +0 -158
- data/vendor/c_exception/vendor/unity/test/targets/clang_file.yml +0 -78
- data/vendor/c_exception/vendor/unity/test/targets/clang_strict.yml +0 -78
- data/vendor/c_exception/vendor/unity/test/targets/gcc_32.yml +0 -49
- data/vendor/c_exception/vendor/unity/test/targets/gcc_64.yml +0 -50
- data/vendor/c_exception/vendor/unity/test/targets/gcc_auto_limits.yml +0 -47
- data/vendor/c_exception/vendor/unity/test/targets/gcc_auto_stdint.yml +0 -59
- data/vendor/c_exception/vendor/unity/test/targets/gcc_manual_math.yml +0 -47
- data/vendor/c_exception/vendor/unity/test/targets/hitech_picc18.yml +0 -101
- data/vendor/c_exception/vendor/unity/test/targets/iar_arm_v4.yml +0 -90
- data/vendor/c_exception/vendor/unity/test/targets/iar_arm_v5.yml +0 -80
- data/vendor/c_exception/vendor/unity/test/targets/iar_arm_v5_3.yml +0 -80
- data/vendor/c_exception/vendor/unity/test/targets/iar_armcortex_LM3S9B92_v5_4.yml +0 -94
- data/vendor/c_exception/vendor/unity/test/targets/iar_cortexm3_v5.yml +0 -84
- data/vendor/c_exception/vendor/unity/test/targets/iar_msp430.yml +0 -95
- data/vendor/c_exception/vendor/unity/test/targets/iar_sh2a_v6.yml +0 -86
- data/vendor/c_exception/vendor/unity/test/testdata/CException.h +0 -11
- data/vendor/c_exception/vendor/unity/test/testdata/Defs.h +0 -8
- data/vendor/c_exception/vendor/unity/test/testdata/cmock.h +0 -14
- data/vendor/c_exception/vendor/unity/test/testdata/mockMock.h +0 -13
- data/vendor/c_exception/vendor/unity/test/testdata/testRunnerGenerator.c +0 -183
- data/vendor/c_exception/vendor/unity/test/testdata/testRunnerGeneratorSmall.c +0 -67
- data/vendor/c_exception/vendor/unity/test/testdata/testRunnerGeneratorWithMocks.c +0 -192
- data/vendor/c_exception/vendor/unity/test/tests/test_generate_test_runner.rb +0 -1252
- data/vendor/c_exception/vendor/unity/test/tests/testparameterized.c +0 -110
- data/vendor/c_exception/vendor/unity/test/tests/testunity.c +0 -4993
- data/vendor/cmock/vendor/c_exception/vendor/unity/README.md +0 -220
- data/vendor/cmock/vendor/c_exception/vendor/unity/auto/colour_prompt.rb +0 -118
- data/vendor/cmock/vendor/c_exception/vendor/unity/auto/colour_reporter.rb +0 -39
- data/vendor/cmock/vendor/c_exception/vendor/unity/auto/generate_config.yml +0 -36
- data/vendor/cmock/vendor/c_exception/vendor/unity/auto/generate_module.rb +0 -308
- data/vendor/cmock/vendor/c_exception/vendor/unity/auto/generate_test_runner.rb +0 -437
- data/vendor/cmock/vendor/c_exception/vendor/unity/auto/parse_output.rb +0 -220
- data/vendor/cmock/vendor/c_exception/vendor/unity/auto/stylize_as_junit.rb +0 -252
- data/vendor/cmock/vendor/c_exception/vendor/unity/auto/test_file_filter.rb +0 -25
- data/vendor/cmock/vendor/c_exception/vendor/unity/auto/type_sanitizer.rb +0 -6
- data/vendor/cmock/vendor/c_exception/vendor/unity/auto/unity_test_summary.py +0 -139
- data/vendor/cmock/vendor/c_exception/vendor/unity/auto/unity_test_summary.rb +0 -136
- data/vendor/cmock/vendor/c_exception/vendor/unity/auto/unity_to_junit.py +0 -146
- data/vendor/cmock/vendor/c_exception/vendor/unity/docs/ThrowTheSwitchCodingStandard.md +0 -207
- data/vendor/cmock/vendor/c_exception/vendor/unity/docs/UnityAssertionsCheatSheetSuitableforPrintingandPossiblyFraming.pdf +0 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/docs/UnityAssertionsReference.md +0 -716
- data/vendor/cmock/vendor/c_exception/vendor/unity/docs/UnityConfigurationGuide.md +0 -398
- data/vendor/cmock/vendor/c_exception/vendor/unity/docs/UnityGettingStartedGuide.md +0 -191
- data/vendor/cmock/vendor/c_exception/vendor/unity/docs/UnityHelperScriptsGuide.md +0 -242
- data/vendor/cmock/vendor/c_exception/vendor/unity/docs/license.txt +0 -21
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/makefile +0 -71
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/readme.txt +0 -5
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode.c +0 -24
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode.h +0 -3
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode2.c +0 -11
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode2.h +0 -2
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/test/TestProductionCode.c +0 -62
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/test/TestProductionCode2.c +0 -31
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/test/test_runners/TestProductionCode2_Runner.c +0 -53
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/test/test_runners/TestProductionCode_Runner.c +0 -57
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/makefile +0 -70
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/readme.txt +0 -5
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/src/ProductionCode.c +0 -24
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/src/ProductionCode.h +0 -3
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/src/ProductionCode2.c +0 -11
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/src/ProductionCode2.h +0 -2
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/test/TestProductionCode.c +0 -64
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/test/TestProductionCode2.c +0 -33
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/test/test_runners/TestProductionCode2_Runner.c +0 -9
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/test/test_runners/TestProductionCode_Runner.c +0 -11
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/test/test_runners/all_tests.c +0 -12
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/helper/UnityHelper.c +0 -10
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/helper/UnityHelper.h +0 -12
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/rakefile.rb +0 -43
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/rakefile_helper.rb +0 -249
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/readme.txt +0 -13
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/src/ProductionCode.c +0 -24
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/src/ProductionCode.h +0 -3
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/src/ProductionCode2.c +0 -11
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/src/ProductionCode2.h +0 -2
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/target_gcc_32.yml +0 -46
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/test/TestProductionCode.c +0 -62
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/test/TestProductionCode2.c +0 -31
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/unity_config.h +0 -237
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/eclipse/error_parsers.txt +0 -26
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/rakefile.rb +0 -48
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/rakefile_helper.rb +0 -178
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/readme.txt +0 -9
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.c +0 -432
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.h +0 -83
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_internals.h +0 -51
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +0 -47
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/Makefile +0 -74
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/main/AllTests.c +0 -22
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/template_fixture_tests.c +0 -39
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_Test.c +0 -543
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +0 -57
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.c +0 -57
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.h +0 -17
- data/vendor/cmock/vendor/c_exception/vendor/unity/release/build.info +0 -2
- data/vendor/cmock/vendor/c_exception/vendor/unity/release/version.info +0 -2
- data/vendor/cmock/vendor/c_exception/vendor/unity/src/unity.c +0 -1517
- data/vendor/cmock/vendor/c_exception/vendor/unity/src/unity.h +0 -339
- data/vendor/cmock/vendor/c_exception/vendor/unity/src/unity_internals.h +0 -784
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/Makefile +0 -63
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_cmd.c +0 -61
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_def.c +0 -57
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_head1.c +0 -55
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_head1.h +0 -15
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_cmd.c +0 -80
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_def.c +0 -76
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_head1.c +0 -75
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_head1.h +0 -13
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new1.c +0 -89
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new2.c +0 -89
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_param.c +0 -77
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run1.c +0 -89
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run2.c +0 -89
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_yaml.c +0 -90
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_new1.c +0 -67
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_new2.c +0 -70
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_param.c +0 -58
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_run1.c +0 -67
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_run2.c +0 -70
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_yaml.c +0 -71
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/rakefile +0 -125
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/rakefile_helper.rb +0 -260
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/spec/generate_module_existing_file_spec.rb +0 -158
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/clang_file.yml +0 -78
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/clang_strict.yml +0 -78
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/gcc_32.yml +0 -49
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/gcc_64.yml +0 -50
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/gcc_auto_limits.yml +0 -47
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/gcc_auto_stdint.yml +0 -59
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/gcc_manual_math.yml +0 -47
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/hitech_picc18.yml +0 -101
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/iar_arm_v4.yml +0 -90
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/iar_arm_v5.yml +0 -80
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/iar_arm_v5_3.yml +0 -80
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/iar_armcortex_LM3S9B92_v5_4.yml +0 -94
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/iar_cortexm3_v5.yml +0 -84
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/iar_msp430.yml +0 -95
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/iar_sh2a_v6.yml +0 -86
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/CException.h +0 -11
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/Defs.h +0 -8
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/cmock.h +0 -14
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/mockMock.h +0 -13
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/testRunnerGenerator.c +0 -183
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/testRunnerGeneratorSmall.c +0 -67
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/testRunnerGeneratorWithMocks.c +0 -192
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/tests/test_generate_test_runner.rb +0 -1252
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/tests/testparameterized.c +0 -110
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/tests/testunity.c +0 -4993
- data/vendor/deep_merge/MIT-LICENSE +0 -20
- data/vendor/deep_merge/README +0 -94
- data/vendor/deep_merge/Rakefile +0 -28
- data/vendor/deep_merge/lib/deep_merge.rb +0 -211
- data/vendor/deep_merge/pkg/deep_merge-0.1.0.gem +0 -0
- data/vendor/deep_merge/test/test_deep_merge.rb +0 -553
data/vendor/unity/README.md
CHANGED
@@ -1,8 +1,17 @@
|
|
1
|
-
Unity Test
|
2
|
-
|
1
|
+
Unity Test ![CI](https://github.com/ThrowTheSwitch/Unity/workflows/CI/badge.svg)
|
2
|
+
==========
|
3
|
+
__Copyright (c) 2007 - 2021 Unity Project by Mike Karlesky, Mark VanderVoord, and Greg Williams__
|
3
4
|
|
4
|
-
|
5
|
-
|
5
|
+
Welcome to the Unity Test Project, one of the main projects of ThrowTheSwitch.org. Unity Test is a
|
6
|
+
unit testing framework built for C, with a focus on working with embedded toolchains.
|
7
|
+
|
8
|
+
This project is made to test code targetting microcontrollers big and small. The core project is a
|
9
|
+
single C file and a pair of headers, allowing it to the added to your existing build setup without
|
10
|
+
too much headache. You may use any compiler you wish, and may use most existing build systems
|
11
|
+
including make, cmake, etc. If you'd like to leave the hard work to us, you might be interested
|
12
|
+
in Ceedling, a build tool also by ThrowTheSwitch.org.
|
13
|
+
|
14
|
+
If you're new to Unity, we encourage you to tour the [getting started guide](docs/UnityGettingStartedGuide.md)
|
6
15
|
|
7
16
|
Getting Started
|
8
17
|
===============
|
@@ -13,7 +13,9 @@ require 'fileutils'
|
|
13
13
|
require 'pathname'
|
14
14
|
|
15
15
|
# TEMPLATE_TST
|
16
|
-
TEMPLATE_TST ||= '#
|
16
|
+
TEMPLATE_TST ||= '#ifdef TEST
|
17
|
+
|
18
|
+
#include "unity.h"
|
17
19
|
|
18
20
|
%2$s#include "%1$s.h"
|
19
21
|
|
@@ -29,6 +31,8 @@ void test_%4$s_NeedToImplement(void)
|
|
29
31
|
{
|
30
32
|
TEST_IGNORE_MESSAGE("Need to Implement %1$s");
|
31
33
|
}
|
34
|
+
|
35
|
+
#endif // TEST
|
32
36
|
'.freeze
|
33
37
|
|
34
38
|
# TEMPLATE_SRC
|
@@ -164,22 +168,19 @@ class UnityModuleGenerator
|
|
164
168
|
end
|
165
169
|
|
166
170
|
############################
|
167
|
-
def neutralize_filename(name, start_cap=true)
|
171
|
+
def neutralize_filename(name, start_cap = true)
|
168
172
|
return name if name.empty?
|
169
|
-
name = name.split(/(?:\s+|_|(?=[A-Z][a-z]))|(?<=[a-z])(?=[A-Z])/).map{|v|v.capitalize}.join('_')
|
170
|
-
|
171
|
-
|
172
|
-
else
|
173
|
-
return name[0].downcase + name[1..-1]
|
174
|
-
end
|
173
|
+
name = name.split(/(?:\s+|_|(?=[A-Z][a-z]))|(?<=[a-z])(?=[A-Z])/).map { |v| v.capitalize }.join('_')
|
174
|
+
name = name[0].downcase + name[1..-1] unless start_cap
|
175
|
+
return name
|
175
176
|
end
|
176
177
|
|
177
178
|
############################
|
178
179
|
def create_filename(part1, part2 = '')
|
179
180
|
name = part2.empty? ? part1 : part1 + '_' + part2
|
180
181
|
case (@options[:naming])
|
181
|
-
when 'bumpy' then neutralize_filename(name,false).
|
182
|
-
when 'camel' then neutralize_filename(name).
|
182
|
+
when 'bumpy' then neutralize_filename(name,false).delete('_')
|
183
|
+
when 'camel' then neutralize_filename(name).delete('_')
|
183
184
|
when 'snake' then neutralize_filename(name).downcase
|
184
185
|
when 'caps' then neutralize_filename(name).upcase
|
185
186
|
else name
|
@@ -197,7 +197,7 @@ class UnityTestRunnerGenerator
|
|
197
197
|
mock_headers = []
|
198
198
|
includes.each do |include_path|
|
199
199
|
include_file = File.basename(include_path)
|
200
|
-
mock_headers << include_path if include_file =~ /^#{@options[:mock_prefix]}.*#{@options[:mock_suffix]}$/i
|
200
|
+
mock_headers << include_path if include_file =~ /^#{@options[:mock_prefix]}.*#{@options[:mock_suffix]}\.h$/i
|
201
201
|
end
|
202
202
|
mock_headers
|
203
203
|
end
|
@@ -206,7 +206,7 @@ class UnityTestRunnerGenerator
|
|
206
206
|
@options[:has_setup] = source =~ /void\s+#{@options[:setup_name]}\s*\(/
|
207
207
|
@options[:has_teardown] = source =~ /void\s+#{@options[:teardown_name]}\s*\(/
|
208
208
|
@options[:has_suite_setup] ||= (source =~ /void\s+suiteSetUp\s*\(/)
|
209
|
-
@options[:has_suite_teardown] ||= (source =~ /
|
209
|
+
@options[:has_suite_teardown] ||= (source =~ /int\s+suiteTearDown\s*\(int\s+([a-zA-Z0-9_])+\s*\)/)
|
210
210
|
end
|
211
211
|
|
212
212
|
def create_header(output, mocks, testfile_includes = [])
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*=======Test Runner Used To Run Each Test=====*/
|
2
|
-
static void run_test(UnityTestFunction func, const char* name,
|
2
|
+
static void run_test(UnityTestFunction func, const char* name, UNITY_LINE_TYPE line_num)
|
3
3
|
{
|
4
4
|
Unity.CurrentTestName = name;
|
5
5
|
Unity.CurrentTestLineNumber = line_num;
|
data/vendor/unity/meson.build
CHANGED
@@ -7,42 +7,8 @@
|
|
7
7
|
project('unity', 'c',
|
8
8
|
license: 'MIT',
|
9
9
|
meson_version: '>=0.53.0',
|
10
|
-
default_options: ['
|
10
|
+
default_options: ['werror=true', 'c_std=c11']
|
11
11
|
)
|
12
|
-
lang = 'c'
|
13
|
-
cc = meson.get_compiler(lang)
|
14
12
|
|
15
|
-
#
|
16
|
-
# Meson: Add compiler flags
|
17
|
-
if cc.get_id() == 'clang'
|
18
|
-
add_project_arguments(cc.get_supported_arguments(
|
19
|
-
[
|
20
|
-
'-Wexit-time-destructors',
|
21
|
-
'-Wglobal-constructors',
|
22
|
-
'-Wmissing-prototypes',
|
23
|
-
'-Wmissing-noreturn',
|
24
|
-
'-Wno-missing-braces',
|
25
|
-
'-Wold-style-cast', '-Wpointer-arith', '-Wweak-vtables',
|
26
|
-
'-Wcast-align', '-Wconversion', '-Wcast-qual', '-Wshadow'
|
27
|
-
]
|
28
|
-
), language: lang)
|
29
|
-
endif
|
30
|
-
|
31
|
-
if cc.get_argument_syntax() == 'gcc'
|
32
|
-
add_project_arguments(cc.get_supported_arguments(
|
33
|
-
[
|
34
|
-
'-Wformat', '-Waddress', '-Winit-self', '-Wno-multichar',
|
35
|
-
'-Wpointer-arith' , '-Wwrite-strings' ,
|
36
|
-
'-Wno-parentheses' , '-Wno-type-limits' ,
|
37
|
-
'-Wformat-security' , '-Wunreachable-code' ,
|
38
|
-
'-Waggregate-return' , '-Wformat-nonliteral' ,
|
39
|
-
'-Wmissing-declarations', '-Wmissing-include-dirs' ,
|
40
|
-
'-Wno-unused-parameter'
|
41
|
-
]
|
42
|
-
), language: lang)
|
43
|
-
endif
|
44
|
-
|
45
|
-
#
|
46
|
-
# Sub directory to project source code
|
47
13
|
subdir('src')
|
48
14
|
unity_dep = declare_dependency(link_with: unity_lib, include_directories: unity_dir)
|
data/vendor/unity/src/unity.c
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
/* =========================================================================
|
2
2
|
Unity Project - A Test Framework for C
|
3
|
-
Copyright (c) 2007-
|
3
|
+
Copyright (c) 2007-21 Mike Karlesky, Mark VanderVoord, Greg Williams
|
4
4
|
[Released under MIT License. Please refer to license.txt for details]
|
5
5
|
============================================================================ */
|
6
6
|
|
@@ -67,9 +67,10 @@ static const char PROGMEM UnityStrBreaker[] = "------------------
|
|
67
67
|
static const char PROGMEM UnityStrResultsTests[] = " Tests ";
|
68
68
|
static const char PROGMEM UnityStrResultsFailures[] = " Failures ";
|
69
69
|
static const char PROGMEM UnityStrResultsIgnored[] = " Ignored ";
|
70
|
+
#ifndef UNITY_EXCLUDE_DETAILS
|
70
71
|
static const char PROGMEM UnityStrDetail1Name[] = UNITY_DETAIL1_NAME " ";
|
71
72
|
static const char PROGMEM UnityStrDetail2Name[] = " " UNITY_DETAIL2_NAME " ";
|
72
|
-
|
73
|
+
#endif
|
73
74
|
/*-----------------------------------------------
|
74
75
|
* Pretty Printers & Test Result Output Handlers
|
75
76
|
*-----------------------------------------------*/
|
@@ -1001,7 +1002,7 @@ void UnityAssertFloatSpecial(const UNITY_FLOAT actual,
|
|
1001
1002
|
is_trait = !isinf(actual) && !isnan(actual);
|
1002
1003
|
break;
|
1003
1004
|
|
1004
|
-
default:
|
1005
|
+
default: /* including UNITY_FLOAT_INVALID_TRAIT */
|
1005
1006
|
trait_index = 0;
|
1006
1007
|
trait_names[0] = UnityStrInvalidFloatTrait;
|
1007
1008
|
break;
|
@@ -1141,7 +1142,7 @@ void UnityAssertDoubleSpecial(const UNITY_DOUBLE actual,
|
|
1141
1142
|
is_trait = !isinf(actual) && !isnan(actual);
|
1142
1143
|
break;
|
1143
1144
|
|
1144
|
-
default:
|
1145
|
+
default: /* including UNITY_FLOAT_INVALID_TRAIT */
|
1145
1146
|
trait_index = 0;
|
1146
1147
|
trait_names[0] = UnityStrInvalidFloatTrait;
|
1147
1148
|
break;
|
data/vendor/unity/src/unity.h
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
/* ==========================================
|
2
2
|
Unity Project - A Test Framework for C
|
3
|
-
Copyright (c) 2007-
|
3
|
+
Copyright (c) 2007-21 Mike Karlesky, Mark VanderVoord, Greg Williams
|
4
4
|
[Released under MIT License. Please refer to license.txt for details]
|
5
5
|
========================================== */
|
6
6
|
|
@@ -10,7 +10,7 @@
|
|
10
10
|
|
11
11
|
#define UNITY_VERSION_MAJOR 2
|
12
12
|
#define UNITY_VERSION_MINOR 5
|
13
|
-
#define UNITY_VERSION_BUILD
|
13
|
+
#define UNITY_VERSION_BUILD 2
|
14
14
|
#define UNITY_VERSION ((UNITY_VERSION_MAJOR << 16) | (UNITY_VERSION_MINOR << 8) | UNITY_VERSION_BUILD)
|
15
15
|
|
16
16
|
#ifdef __cplusplus
|
@@ -150,10 +150,10 @@ void verifyTest(void);
|
|
150
150
|
#define TEST_ASSERT_EQUAL_HEX64(expected, actual) UNITY_TEST_ASSERT_EQUAL_HEX64((expected), (actual), __LINE__, NULL)
|
151
151
|
#define TEST_ASSERT_EQUAL_CHAR(expected, actual) UNITY_TEST_ASSERT_EQUAL_CHAR((expected), (actual), __LINE__, NULL)
|
152
152
|
#define TEST_ASSERT_BITS(mask, expected, actual) UNITY_TEST_ASSERT_BITS((mask), (expected), (actual), __LINE__, NULL)
|
153
|
-
#define TEST_ASSERT_BITS_HIGH(mask, actual) UNITY_TEST_ASSERT_BITS((mask), (
|
154
|
-
#define TEST_ASSERT_BITS_LOW(mask, actual) UNITY_TEST_ASSERT_BITS((mask), (
|
155
|
-
#define TEST_ASSERT_BIT_HIGH(bit, actual) UNITY_TEST_ASSERT_BITS(((
|
156
|
-
#define TEST_ASSERT_BIT_LOW(bit, actual) UNITY_TEST_ASSERT_BITS(((
|
153
|
+
#define TEST_ASSERT_BITS_HIGH(mask, actual) UNITY_TEST_ASSERT_BITS((mask), (UNITY_UINT)(-1), (actual), __LINE__, NULL)
|
154
|
+
#define TEST_ASSERT_BITS_LOW(mask, actual) UNITY_TEST_ASSERT_BITS((mask), (UNITY_UINT)(0), (actual), __LINE__, NULL)
|
155
|
+
#define TEST_ASSERT_BIT_HIGH(bit, actual) UNITY_TEST_ASSERT_BITS(((UNITY_UINT)1 << (bit)), (UNITY_UINT)(-1), (actual), __LINE__, NULL)
|
156
|
+
#define TEST_ASSERT_BIT_LOW(bit, actual) UNITY_TEST_ASSERT_BITS(((UNITY_UINT)1 << (bit)), (UNITY_UINT)(0), (actual), __LINE__, NULL)
|
157
157
|
|
158
158
|
/* Integer Not Equal To (of all sizes) */
|
159
159
|
#define TEST_ASSERT_NOT_EQUAL_INT(threshold, actual) UNITY_TEST_ASSERT_NOT_EQUAL_INT((threshold), (actual), __LINE__, NULL)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/* ==========================================
|
2
2
|
Unity Project - A Test Framework for C
|
3
|
-
Copyright (c) 2007-
|
3
|
+
Copyright (c) 2007-21 Mike Karlesky, Mark VanderVoord, Greg Williams
|
4
4
|
[Released under MIT License. Please refer to license.txt for details]
|
5
5
|
========================================== */
|
6
6
|
|
@@ -40,6 +40,12 @@
|
|
40
40
|
#include <limits.h>
|
41
41
|
#endif
|
42
42
|
|
43
|
+
#if defined __GNUC__
|
44
|
+
# define UNITY_FUNCTION_ATTR(a) __attribute__((a))
|
45
|
+
#else
|
46
|
+
# define UNITY_FUNCTION_ATTR(a) /* ignore */
|
47
|
+
#endif
|
48
|
+
|
43
49
|
/*-------------------------------------------------------
|
44
50
|
* Guess Widths If Not Specified
|
45
51
|
*-------------------------------------------------------*/
|
@@ -611,8 +617,14 @@ void UnityAssertNumbersArrayWithin(const UNITY_UINT delta,
|
|
611
617
|
const UNITY_DISPLAY_STYLE_T style,
|
612
618
|
const UNITY_FLAGS_T flags);
|
613
619
|
|
620
|
+
#ifndef UNITY_EXCLUDE_SETJMP_H
|
621
|
+
void UnityFail(const char* message, const UNITY_LINE_TYPE line) UNITY_FUNCTION_ATTR(noreturn);
|
622
|
+
void UnityIgnore(const char* message, const UNITY_LINE_TYPE line) UNITY_FUNCTION_ATTR(noreturn);
|
623
|
+
#else
|
614
624
|
void UnityFail(const char* message, const UNITY_LINE_TYPE line);
|
615
625
|
void UnityIgnore(const char* message, const UNITY_LINE_TYPE line);
|
626
|
+
#endif
|
627
|
+
|
616
628
|
void UnityMessage(const char* message, const UNITY_LINE_TYPE line);
|
617
629
|
|
618
630
|
#ifndef UNITY_EXCLUDE_FLOAT
|
@@ -701,11 +713,8 @@ extern const char UnityStrErrShorthand[];
|
|
701
713
|
#endif
|
702
714
|
#endif
|
703
715
|
#ifdef UNITY_SUPPORT_VARIADIC_MACROS
|
704
|
-
#define RUN_TEST(...)
|
705
|
-
#define
|
706
|
-
#define RUN_TEST_FIRST_HELPER(first, ...) (first), #first
|
707
|
-
#define RUN_TEST_SECOND(...) RUN_TEST_SECOND_HELPER(__VA_ARGS__, __LINE__, throwaway)
|
708
|
-
#define RUN_TEST_SECOND_HELPER(first, second, ...) (second)
|
716
|
+
#define RUN_TEST(...) RUN_TEST_AT_LINE(__VA_ARGS__, __LINE__, throwaway)
|
717
|
+
#define RUN_TEST_AT_LINE(func, line, ...) UnityDefaultTestRun(func, #func, line)
|
709
718
|
#endif
|
710
719
|
#endif
|
711
720
|
|
data/vendor/unity/test/Makefile
CHANGED
@@ -10,6 +10,7 @@ endif
|
|
10
10
|
CFLAGS += -std=c99 -pedantic -Wall -Wextra -Werror
|
11
11
|
#CFLAGS += -Wconversion #disabled because if falsely complains about the isinf and isnan macros
|
12
12
|
CFLAGS += -Wno-switch-enum -Wno-double-promotion
|
13
|
+
CFLAGS += -Wno-poison-system-directories
|
13
14
|
CFLAGS += -Wbad-function-cast -Wcast-qual -Wold-style-definition -Wshadow -Wstrict-overflow \
|
14
15
|
-Wstrict-prototypes -Wswitch-default -Wundef
|
15
16
|
#DEBUG = -O0 -g
|
@@ -300,8 +300,8 @@ module RakefileHelpers
|
|
300
300
|
|
301
301
|
def run_make_tests()
|
302
302
|
[ "make -s", # test with all defaults
|
303
|
-
"make -s DEBUG=-m32", # test 32-bit architecture with 64-bit support
|
304
|
-
"make -s DEBUG=-m32 UNITY_SUPPORT_64=", # test 32-bit build without 64-bit types
|
303
|
+
#"make -s DEBUG=-m32", # test 32-bit architecture with 64-bit support
|
304
|
+
#"make -s DEBUG=-m32 UNITY_SUPPORT_64=", # test 32-bit build without 64-bit types
|
305
305
|
"make -s UNITY_INCLUDE_DOUBLE= ", # test without double
|
306
306
|
"cd #{File.join("..","extras","fixture",'test')} && make -s default noStdlibMalloc",
|
307
307
|
"cd #{File.join("..","extras","fixture",'test')} && make -s C89",
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ceedling
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.31.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mark VanderVoord
|
@@ -10,50 +10,64 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2021-01-29 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: thor
|
17
17
|
requirement: !ruby/object:Gem::Requirement
|
18
18
|
requirements:
|
19
|
-
- - "
|
19
|
+
- - "~>"
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 0.14
|
21
|
+
version: '0.14'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
25
|
requirements:
|
26
|
-
- - "
|
26
|
+
- - "~>"
|
27
27
|
- !ruby/object:Gem::Version
|
28
|
-
version: 0.14
|
28
|
+
version: '0.14'
|
29
29
|
- !ruby/object:Gem::Dependency
|
30
30
|
name: rake
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
32
32
|
requirements:
|
33
|
-
- - "
|
33
|
+
- - "~>"
|
34
34
|
- !ruby/object:Gem::Version
|
35
|
-
version: 12
|
35
|
+
version: '12'
|
36
36
|
type: :runtime
|
37
37
|
prerelease: false
|
38
38
|
version_requirements: !ruby/object:Gem::Requirement
|
39
39
|
requirements:
|
40
|
-
- - "
|
40
|
+
- - "~>"
|
41
41
|
- !ruby/object:Gem::Version
|
42
|
-
version: 12
|
42
|
+
version: '12'
|
43
|
+
- !ruby/object:Gem::Dependency
|
44
|
+
name: deep_merge
|
45
|
+
requirement: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - "~>"
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '1.2'
|
50
|
+
type: :runtime
|
51
|
+
prerelease: false
|
52
|
+
version_requirements: !ruby/object:Gem::Requirement
|
53
|
+
requirements:
|
54
|
+
- - "~>"
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: '1.2'
|
43
57
|
- !ruby/object:Gem::Dependency
|
44
58
|
name: constructor
|
45
59
|
requirement: !ruby/object:Gem::Requirement
|
46
60
|
requirements:
|
47
|
-
- - "
|
61
|
+
- - "~>"
|
48
62
|
- !ruby/object:Gem::Version
|
49
|
-
version:
|
63
|
+
version: '2'
|
50
64
|
type: :runtime
|
51
65
|
prerelease: false
|
52
66
|
version_requirements: !ruby/object:Gem::Requirement
|
53
67
|
requirements:
|
54
|
-
- - "
|
68
|
+
- - "~>"
|
55
69
|
- !ruby/object:Gem::Version
|
56
|
-
version:
|
70
|
+
version: '2'
|
57
71
|
description: |
|
58
72
|
Ceedling is a build automation tool that helps you create and run C unit test suites.
|
59
73
|
|
@@ -61,7 +75,7 @@ description: |
|
|
61
75
|
|
62
76
|
Ceedling 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.
|
63
77
|
email:
|
64
|
-
-
|
78
|
+
- mark@vandervoord.net
|
65
79
|
- michael@karlesky.net
|
66
80
|
- barney.williams@gmail.com
|
67
81
|
executables:
|
@@ -73,6 +87,17 @@ files:
|
|
73
87
|
- Gemfile.lock
|
74
88
|
- README.md
|
75
89
|
- Rakefile
|
90
|
+
- assets/auto_link_deep_dependencies/src/a.c
|
91
|
+
- assets/auto_link_deep_dependencies/src/b.c
|
92
|
+
- assets/auto_link_deep_dependencies/src/c.c
|
93
|
+
- assets/auto_link_deep_dependencies/src/internal_inc/a.h
|
94
|
+
- assets/auto_link_deep_dependencies/src/internal_inc/b.h
|
95
|
+
- assets/auto_link_deep_dependencies/src/internal_inc/c.h
|
96
|
+
- assets/auto_link_deep_dependencies/src/internal_inc/never_compiled.h
|
97
|
+
- assets/auto_link_deep_dependencies/src/never_compiled.c
|
98
|
+
- assets/auto_link_deep_dependencies/test/test_a.c
|
99
|
+
- assets/auto_link_deep_dependencies/test/test_b.c
|
100
|
+
- assets/auto_link_deep_dependencies/test/test_c.c
|
76
101
|
- assets/ceedling
|
77
102
|
- assets/ceedling.cmd
|
78
103
|
- assets/default_gitignore
|
@@ -81,14 +106,23 @@ files:
|
|
81
106
|
- assets/project_as_gem.yml
|
82
107
|
- assets/project_with_guts.yml
|
83
108
|
- assets/project_with_guts_gcov.yml
|
84
|
-
- assets/project_with_guts_gcov_abortonuncovered.yml
|
85
109
|
- assets/test_example_file.c
|
86
110
|
- assets/test_example_file_boom.c
|
87
111
|
- assets/test_example_file_success.c
|
112
|
+
- assets/test_example_file_unity_printf.c
|
88
113
|
- assets/test_example_file_verbose.c
|
114
|
+
- assets/test_example_with_parameterized_tests.c
|
115
|
+
- assets/tests_with_defines/src/adc_hardware.c
|
116
|
+
- assets/tests_with_defines/src/adc_hardware.h
|
117
|
+
- assets/tests_with_defines/src/adc_hardware_configurator.c
|
118
|
+
- assets/tests_with_defines/src/adc_hardware_configurator.h
|
119
|
+
- assets/tests_with_defines/test/test_adc_hardware.c
|
120
|
+
- assets/tests_with_defines/test/test_adc_hardware_special.c
|
89
121
|
- assets/uncovered_example_file.c
|
90
122
|
- bin/ceedling
|
91
123
|
- ceedling.gemspec
|
124
|
+
- ceedling.sublime-project
|
125
|
+
- ceedling.sublime-workspace
|
92
126
|
- config/test_environment.rb
|
93
127
|
- docs/Ceedling Basic Porting.pdf
|
94
128
|
- docs/Ceedling Managing Release Code.pdf
|
@@ -112,8 +146,361 @@ files:
|
|
112
146
|
- examples/blinky/test/test_BlinkTask.c
|
113
147
|
- examples/blinky/test/test_Configure.c
|
114
148
|
- examples/blinky/test/test_main.c
|
149
|
+
- examples/temp_sensor/build/test/cache/AdcConductor.h
|
150
|
+
- examples/temp_sensor/build/test/cache/AdcHardware.h
|
151
|
+
- examples/temp_sensor/build/test/cache/AdcHardwareConfigurator.h
|
152
|
+
- examples/temp_sensor/build/test/cache/AdcModel.h
|
153
|
+
- examples/temp_sensor/build/test/cache/AdcTemperatureSensor.h
|
154
|
+
- examples/temp_sensor/build/test/cache/Executor.h
|
155
|
+
- examples/temp_sensor/build/test/cache/IntrinsicsWrapper.h
|
156
|
+
- examples/temp_sensor/build/test/cache/Model.h
|
157
|
+
- examples/temp_sensor/build/test/cache/TaskScheduler.h
|
158
|
+
- examples/temp_sensor/build/test/cache/TemperatureCalculator.h
|
159
|
+
- examples/temp_sensor/build/test/cache/TemperatureFilter.h
|
160
|
+
- examples/temp_sensor/build/test/cache/TestAdcConductor.c
|
161
|
+
- examples/temp_sensor/build/test/cache/TestAdcHardware.c
|
162
|
+
- examples/temp_sensor/build/test/cache/TestAdcModel.c
|
163
|
+
- examples/temp_sensor/build/test/cache/TestExecutor.c
|
164
|
+
- examples/temp_sensor/build/test/cache/TestMain.c
|
165
|
+
- examples/temp_sensor/build/test/cache/TestModel.c
|
166
|
+
- examples/temp_sensor/build/test/cache/TestTaskScheduler.c
|
167
|
+
- examples/temp_sensor/build/test/cache/TestTemperatureCalculator.c
|
168
|
+
- examples/temp_sensor/build/test/cache/TestTemperatureFilter.c
|
169
|
+
- examples/temp_sensor/build/test/cache/TestTimerConductor.c
|
170
|
+
- examples/temp_sensor/build/test/cache/TestTimerHardware.c
|
171
|
+
- examples/temp_sensor/build/test/cache/TestTimerModel.c
|
172
|
+
- examples/temp_sensor/build/test/cache/TestUsartBaudRateRegisterCalculator.c
|
173
|
+
- examples/temp_sensor/build/test/cache/TestUsartConductor.c
|
174
|
+
- examples/temp_sensor/build/test/cache/TestUsartHardware.c
|
175
|
+
- examples/temp_sensor/build/test/cache/TestUsartModel.c
|
176
|
+
- examples/temp_sensor/build/test/cache/TimerConductor.h
|
177
|
+
- examples/temp_sensor/build/test/cache/TimerConfigurator.h
|
178
|
+
- examples/temp_sensor/build/test/cache/TimerHardware.h
|
179
|
+
- examples/temp_sensor/build/test/cache/TimerInterruptHandler.h
|
180
|
+
- examples/temp_sensor/build/test/cache/TimerModel.h
|
181
|
+
- examples/temp_sensor/build/test/cache/UsartBaudRateRegisterCalculator.h
|
182
|
+
- examples/temp_sensor/build/test/cache/UsartConductor.h
|
183
|
+
- examples/temp_sensor/build/test/cache/UsartConfigurator.h
|
184
|
+
- examples/temp_sensor/build/test/cache/UsartHardware.h
|
185
|
+
- examples/temp_sensor/build/test/cache/UsartModel.h
|
186
|
+
- examples/temp_sensor/build/test/cache/UsartPutChar.h
|
187
|
+
- examples/temp_sensor/build/test/cache/defines_dependency.yml
|
188
|
+
- examples/temp_sensor/build/test/cache/input.yml
|
189
|
+
- examples/temp_sensor/build/test/dependencies/AdcConductor.d
|
190
|
+
- examples/temp_sensor/build/test/dependencies/AdcHardware.d
|
191
|
+
- examples/temp_sensor/build/test/dependencies/AdcModel.d
|
192
|
+
- examples/temp_sensor/build/test/dependencies/Executor.d
|
193
|
+
- examples/temp_sensor/build/test/dependencies/Main.d
|
194
|
+
- examples/temp_sensor/build/test/dependencies/MockAdcConductor.d
|
195
|
+
- examples/temp_sensor/build/test/dependencies/MockAdcHardware.d
|
196
|
+
- examples/temp_sensor/build/test/dependencies/MockAdcHardwareConfigurator.d
|
197
|
+
- examples/temp_sensor/build/test/dependencies/MockAdcModel.d
|
198
|
+
- examples/temp_sensor/build/test/dependencies/MockAdcTemperatureSensor.d
|
199
|
+
- examples/temp_sensor/build/test/dependencies/MockExecutor.d
|
200
|
+
- examples/temp_sensor/build/test/dependencies/MockIntrinsicsWrapper.d
|
201
|
+
- examples/temp_sensor/build/test/dependencies/MockModel.d
|
202
|
+
- examples/temp_sensor/build/test/dependencies/MockTaskScheduler.d
|
203
|
+
- examples/temp_sensor/build/test/dependencies/MockTemperatureCalculator.d
|
204
|
+
- examples/temp_sensor/build/test/dependencies/MockTemperatureFilter.d
|
205
|
+
- examples/temp_sensor/build/test/dependencies/MockTimerConductor.d
|
206
|
+
- examples/temp_sensor/build/test/dependencies/MockTimerConfigurator.d
|
207
|
+
- examples/temp_sensor/build/test/dependencies/MockTimerHardware.d
|
208
|
+
- examples/temp_sensor/build/test/dependencies/MockTimerInterruptHandler.d
|
209
|
+
- examples/temp_sensor/build/test/dependencies/MockTimerModel.d
|
210
|
+
- examples/temp_sensor/build/test/dependencies/MockUsartBaudRateRegisterCalculator.d
|
211
|
+
- examples/temp_sensor/build/test/dependencies/MockUsartConductor.d
|
212
|
+
- examples/temp_sensor/build/test/dependencies/MockUsartConfigurator.d
|
213
|
+
- examples/temp_sensor/build/test/dependencies/MockUsartHardware.d
|
214
|
+
- examples/temp_sensor/build/test/dependencies/MockUsartModel.d
|
215
|
+
- examples/temp_sensor/build/test/dependencies/MockUsartPutChar.d
|
216
|
+
- examples/temp_sensor/build/test/dependencies/Model.d
|
217
|
+
- examples/temp_sensor/build/test/dependencies/TaskScheduler.d
|
218
|
+
- examples/temp_sensor/build/test/dependencies/TemperatureCalculator.d
|
219
|
+
- examples/temp_sensor/build/test/dependencies/TemperatureFilter.d
|
220
|
+
- examples/temp_sensor/build/test/dependencies/TestAdcConductor.d
|
221
|
+
- examples/temp_sensor/build/test/dependencies/TestAdcConductor_runner.d
|
222
|
+
- examples/temp_sensor/build/test/dependencies/TestAdcHardware.d
|
223
|
+
- examples/temp_sensor/build/test/dependencies/TestAdcHardware_runner.d
|
224
|
+
- examples/temp_sensor/build/test/dependencies/TestAdcModel.d
|
225
|
+
- examples/temp_sensor/build/test/dependencies/TestAdcModel_runner.d
|
226
|
+
- examples/temp_sensor/build/test/dependencies/TestExecutor.d
|
227
|
+
- examples/temp_sensor/build/test/dependencies/TestExecutor_runner.d
|
228
|
+
- examples/temp_sensor/build/test/dependencies/TestMain.d
|
229
|
+
- examples/temp_sensor/build/test/dependencies/TestMain_runner.d
|
230
|
+
- examples/temp_sensor/build/test/dependencies/TestModel.d
|
231
|
+
- examples/temp_sensor/build/test/dependencies/TestModel_runner.d
|
232
|
+
- examples/temp_sensor/build/test/dependencies/TestTaskScheduler.d
|
233
|
+
- examples/temp_sensor/build/test/dependencies/TestTaskScheduler_runner.d
|
234
|
+
- examples/temp_sensor/build/test/dependencies/TestTemperatureCalculator.d
|
235
|
+
- examples/temp_sensor/build/test/dependencies/TestTemperatureCalculator_runner.d
|
236
|
+
- examples/temp_sensor/build/test/dependencies/TestTemperatureFilter.d
|
237
|
+
- examples/temp_sensor/build/test/dependencies/TestTemperatureFilter_runner.d
|
238
|
+
- examples/temp_sensor/build/test/dependencies/TestTimerConductor.d
|
239
|
+
- examples/temp_sensor/build/test/dependencies/TestTimerConductor_runner.d
|
240
|
+
- examples/temp_sensor/build/test/dependencies/TestTimerHardware.d
|
241
|
+
- examples/temp_sensor/build/test/dependencies/TestTimerHardware_runner.d
|
242
|
+
- examples/temp_sensor/build/test/dependencies/TestTimerModel.d
|
243
|
+
- examples/temp_sensor/build/test/dependencies/TestTimerModel_runner.d
|
244
|
+
- examples/temp_sensor/build/test/dependencies/TestUsartBaudRateRegisterCalculator.d
|
245
|
+
- examples/temp_sensor/build/test/dependencies/TestUsartBaudRateRegisterCalculator_runner.d
|
246
|
+
- examples/temp_sensor/build/test/dependencies/TestUsartConductor.d
|
247
|
+
- examples/temp_sensor/build/test/dependencies/TestUsartConductor_runner.d
|
248
|
+
- examples/temp_sensor/build/test/dependencies/TestUsartHardware.d
|
249
|
+
- examples/temp_sensor/build/test/dependencies/TestUsartHardware_runner.d
|
250
|
+
- examples/temp_sensor/build/test/dependencies/TestUsartModel.d
|
251
|
+
- examples/temp_sensor/build/test/dependencies/TestUsartModel_runner.d
|
252
|
+
- examples/temp_sensor/build/test/dependencies/TimerConductor.d
|
253
|
+
- examples/temp_sensor/build/test/dependencies/TimerHardware.d
|
254
|
+
- examples/temp_sensor/build/test/dependencies/TimerModel.d
|
255
|
+
- examples/temp_sensor/build/test/dependencies/UnityHelper.d
|
256
|
+
- examples/temp_sensor/build/test/dependencies/UsartBaudRateRegisterCalculator.d
|
257
|
+
- examples/temp_sensor/build/test/dependencies/UsartConductor.d
|
258
|
+
- examples/temp_sensor/build/test/dependencies/UsartHardware.d
|
259
|
+
- examples/temp_sensor/build/test/dependencies/UsartModel.d
|
260
|
+
- examples/temp_sensor/build/test/dependencies/cmock.d
|
261
|
+
- examples/temp_sensor/build/test/dependencies/unity.d
|
262
|
+
- examples/temp_sensor/build/test/mocks/MockAdcConductor.c
|
263
|
+
- examples/temp_sensor/build/test/mocks/MockAdcConductor.h
|
264
|
+
- examples/temp_sensor/build/test/mocks/MockAdcHardware.c
|
265
|
+
- examples/temp_sensor/build/test/mocks/MockAdcHardware.h
|
266
|
+
- examples/temp_sensor/build/test/mocks/MockAdcHardwareConfigurator.c
|
267
|
+
- examples/temp_sensor/build/test/mocks/MockAdcHardwareConfigurator.h
|
268
|
+
- examples/temp_sensor/build/test/mocks/MockAdcModel.c
|
269
|
+
- examples/temp_sensor/build/test/mocks/MockAdcModel.h
|
270
|
+
- examples/temp_sensor/build/test/mocks/MockAdcTemperatureSensor.c
|
271
|
+
- examples/temp_sensor/build/test/mocks/MockAdcTemperatureSensor.h
|
272
|
+
- examples/temp_sensor/build/test/mocks/MockExecutor.c
|
273
|
+
- examples/temp_sensor/build/test/mocks/MockExecutor.h
|
274
|
+
- examples/temp_sensor/build/test/mocks/MockIntrinsicsWrapper.c
|
275
|
+
- examples/temp_sensor/build/test/mocks/MockIntrinsicsWrapper.h
|
276
|
+
- examples/temp_sensor/build/test/mocks/MockModel.c
|
277
|
+
- examples/temp_sensor/build/test/mocks/MockModel.h
|
278
|
+
- examples/temp_sensor/build/test/mocks/MockTaskScheduler.c
|
279
|
+
- examples/temp_sensor/build/test/mocks/MockTaskScheduler.h
|
280
|
+
- examples/temp_sensor/build/test/mocks/MockTemperatureCalculator.c
|
281
|
+
- examples/temp_sensor/build/test/mocks/MockTemperatureCalculator.h
|
282
|
+
- examples/temp_sensor/build/test/mocks/MockTemperatureFilter.c
|
283
|
+
- examples/temp_sensor/build/test/mocks/MockTemperatureFilter.h
|
284
|
+
- examples/temp_sensor/build/test/mocks/MockTimerConductor.c
|
285
|
+
- examples/temp_sensor/build/test/mocks/MockTimerConductor.h
|
286
|
+
- examples/temp_sensor/build/test/mocks/MockTimerConfigurator.c
|
287
|
+
- examples/temp_sensor/build/test/mocks/MockTimerConfigurator.h
|
288
|
+
- examples/temp_sensor/build/test/mocks/MockTimerHardware.c
|
289
|
+
- examples/temp_sensor/build/test/mocks/MockTimerHardware.h
|
290
|
+
- examples/temp_sensor/build/test/mocks/MockTimerInterruptHandler.c
|
291
|
+
- examples/temp_sensor/build/test/mocks/MockTimerInterruptHandler.h
|
292
|
+
- examples/temp_sensor/build/test/mocks/MockTimerModel.c
|
293
|
+
- examples/temp_sensor/build/test/mocks/MockTimerModel.h
|
294
|
+
- examples/temp_sensor/build/test/mocks/MockUsartBaudRateRegisterCalculator.c
|
295
|
+
- examples/temp_sensor/build/test/mocks/MockUsartBaudRateRegisterCalculator.h
|
296
|
+
- examples/temp_sensor/build/test/mocks/MockUsartConductor.c
|
297
|
+
- examples/temp_sensor/build/test/mocks/MockUsartConductor.h
|
298
|
+
- examples/temp_sensor/build/test/mocks/MockUsartConfigurator.c
|
299
|
+
- examples/temp_sensor/build/test/mocks/MockUsartConfigurator.h
|
300
|
+
- examples/temp_sensor/build/test/mocks/MockUsartHardware.c
|
301
|
+
- examples/temp_sensor/build/test/mocks/MockUsartHardware.h
|
302
|
+
- examples/temp_sensor/build/test/mocks/MockUsartModel.c
|
303
|
+
- examples/temp_sensor/build/test/mocks/MockUsartModel.h
|
304
|
+
- examples/temp_sensor/build/test/mocks/MockUsartPutChar.c
|
305
|
+
- examples/temp_sensor/build/test/mocks/MockUsartPutChar.h
|
306
|
+
- examples/temp_sensor/build/test/out/TestAdcConductor.out
|
307
|
+
- examples/temp_sensor/build/test/out/TestAdcHardware.out
|
308
|
+
- examples/temp_sensor/build/test/out/TestAdcModel.out
|
309
|
+
- examples/temp_sensor/build/test/out/TestExecutor.out
|
310
|
+
- examples/temp_sensor/build/test/out/TestMain.out
|
311
|
+
- examples/temp_sensor/build/test/out/TestModel.out
|
312
|
+
- examples/temp_sensor/build/test/out/TestTaskScheduler.out
|
313
|
+
- examples/temp_sensor/build/test/out/TestTemperatureCalculator.out
|
314
|
+
- examples/temp_sensor/build/test/out/TestTemperatureFilter.out
|
315
|
+
- examples/temp_sensor/build/test/out/TestTimerConductor.out
|
316
|
+
- examples/temp_sensor/build/test/out/TestTimerHardware.out
|
317
|
+
- examples/temp_sensor/build/test/out/TestTimerModel.out
|
318
|
+
- examples/temp_sensor/build/test/out/TestUsartBaudRateRegisterCalculator.out
|
319
|
+
- examples/temp_sensor/build/test/out/TestUsartConductor.out
|
320
|
+
- examples/temp_sensor/build/test/out/TestUsartHardware.out
|
321
|
+
- examples/temp_sensor/build/test/out/TestUsartModel.out
|
322
|
+
- examples/temp_sensor/build/test/out/c/AdcConductor.o
|
323
|
+
- examples/temp_sensor/build/test/out/c/AdcHardware.o
|
324
|
+
- examples/temp_sensor/build/test/out/c/AdcModel.o
|
325
|
+
- examples/temp_sensor/build/test/out/c/Executor.o
|
326
|
+
- examples/temp_sensor/build/test/out/c/Main.o
|
327
|
+
- examples/temp_sensor/build/test/out/c/MockAdcConductor.o
|
328
|
+
- examples/temp_sensor/build/test/out/c/MockAdcHardware.o
|
329
|
+
- examples/temp_sensor/build/test/out/c/MockAdcHardwareConfigurator.o
|
330
|
+
- examples/temp_sensor/build/test/out/c/MockAdcModel.o
|
331
|
+
- examples/temp_sensor/build/test/out/c/MockAdcTemperatureSensor.o
|
332
|
+
- examples/temp_sensor/build/test/out/c/MockExecutor.o
|
333
|
+
- examples/temp_sensor/build/test/out/c/MockIntrinsicsWrapper.o
|
334
|
+
- examples/temp_sensor/build/test/out/c/MockModel.o
|
335
|
+
- examples/temp_sensor/build/test/out/c/MockTaskScheduler.o
|
336
|
+
- examples/temp_sensor/build/test/out/c/MockTemperatureCalculator.o
|
337
|
+
- examples/temp_sensor/build/test/out/c/MockTemperatureFilter.o
|
338
|
+
- examples/temp_sensor/build/test/out/c/MockTimerConductor.o
|
339
|
+
- examples/temp_sensor/build/test/out/c/MockTimerConfigurator.o
|
340
|
+
- examples/temp_sensor/build/test/out/c/MockTimerHardware.o
|
341
|
+
- examples/temp_sensor/build/test/out/c/MockTimerInterruptHandler.o
|
342
|
+
- examples/temp_sensor/build/test/out/c/MockTimerModel.o
|
343
|
+
- examples/temp_sensor/build/test/out/c/MockUsartBaudRateRegisterCalculator.o
|
344
|
+
- examples/temp_sensor/build/test/out/c/MockUsartConductor.o
|
345
|
+
- examples/temp_sensor/build/test/out/c/MockUsartConfigurator.o
|
346
|
+
- examples/temp_sensor/build/test/out/c/MockUsartHardware.o
|
347
|
+
- examples/temp_sensor/build/test/out/c/MockUsartModel.o
|
348
|
+
- examples/temp_sensor/build/test/out/c/MockUsartPutChar.o
|
349
|
+
- examples/temp_sensor/build/test/out/c/Model.o
|
350
|
+
- examples/temp_sensor/build/test/out/c/TaskScheduler.o
|
351
|
+
- examples/temp_sensor/build/test/out/c/TemperatureCalculator.o
|
352
|
+
- examples/temp_sensor/build/test/out/c/TemperatureFilter.o
|
353
|
+
- examples/temp_sensor/build/test/out/c/TestAdcConductor.o
|
354
|
+
- examples/temp_sensor/build/test/out/c/TestAdcConductor_runner.o
|
355
|
+
- examples/temp_sensor/build/test/out/c/TestAdcHardware.o
|
356
|
+
- examples/temp_sensor/build/test/out/c/TestAdcHardware_runner.o
|
357
|
+
- examples/temp_sensor/build/test/out/c/TestAdcModel.o
|
358
|
+
- examples/temp_sensor/build/test/out/c/TestAdcModel_runner.o
|
359
|
+
- examples/temp_sensor/build/test/out/c/TestExecutor.o
|
360
|
+
- examples/temp_sensor/build/test/out/c/TestExecutor_runner.o
|
361
|
+
- examples/temp_sensor/build/test/out/c/TestMain.o
|
362
|
+
- examples/temp_sensor/build/test/out/c/TestMain_runner.o
|
363
|
+
- examples/temp_sensor/build/test/out/c/TestModel.o
|
364
|
+
- examples/temp_sensor/build/test/out/c/TestModel_runner.o
|
365
|
+
- examples/temp_sensor/build/test/out/c/TestTaskScheduler.o
|
366
|
+
- examples/temp_sensor/build/test/out/c/TestTaskScheduler_runner.o
|
367
|
+
- examples/temp_sensor/build/test/out/c/TestTemperatureCalculator.o
|
368
|
+
- examples/temp_sensor/build/test/out/c/TestTemperatureCalculator_runner.o
|
369
|
+
- examples/temp_sensor/build/test/out/c/TestTemperatureFilter.o
|
370
|
+
- examples/temp_sensor/build/test/out/c/TestTemperatureFilter_runner.o
|
371
|
+
- examples/temp_sensor/build/test/out/c/TestTimerConductor.o
|
372
|
+
- examples/temp_sensor/build/test/out/c/TestTimerConductor_runner.o
|
373
|
+
- examples/temp_sensor/build/test/out/c/TestTimerHardware.o
|
374
|
+
- examples/temp_sensor/build/test/out/c/TestTimerHardware_runner.o
|
375
|
+
- examples/temp_sensor/build/test/out/c/TestTimerModel.o
|
376
|
+
- examples/temp_sensor/build/test/out/c/TestTimerModel_runner.o
|
377
|
+
- examples/temp_sensor/build/test/out/c/TestUsartBaudRateRegisterCalculator.o
|
378
|
+
- examples/temp_sensor/build/test/out/c/TestUsartBaudRateRegisterCalculator_runner.o
|
379
|
+
- examples/temp_sensor/build/test/out/c/TestUsartConductor.o
|
380
|
+
- examples/temp_sensor/build/test/out/c/TestUsartConductor_runner.o
|
381
|
+
- examples/temp_sensor/build/test/out/c/TestUsartHardware.o
|
382
|
+
- examples/temp_sensor/build/test/out/c/TestUsartHardware_runner.o
|
383
|
+
- examples/temp_sensor/build/test/out/c/TestUsartModel.o
|
384
|
+
- examples/temp_sensor/build/test/out/c/TestUsartModel_runner.o
|
385
|
+
- examples/temp_sensor/build/test/out/c/TimerConductor.o
|
386
|
+
- examples/temp_sensor/build/test/out/c/TimerHardware.o
|
387
|
+
- examples/temp_sensor/build/test/out/c/TimerModel.o
|
388
|
+
- examples/temp_sensor/build/test/out/c/UnityHelper.o
|
389
|
+
- examples/temp_sensor/build/test/out/c/UsartBaudRateRegisterCalculator.o
|
390
|
+
- examples/temp_sensor/build/test/out/c/UsartConductor.o
|
391
|
+
- examples/temp_sensor/build/test/out/c/UsartHardware.o
|
392
|
+
- examples/temp_sensor/build/test/out/c/UsartModel.o
|
393
|
+
- examples/temp_sensor/build/test/out/c/cmock.o
|
394
|
+
- examples/temp_sensor/build/test/out/c/unity.o
|
395
|
+
- examples/temp_sensor/build/test/preprocess/files/AdcConductor.h
|
396
|
+
- examples/temp_sensor/build/test/preprocess/files/AdcHardware.h
|
397
|
+
- examples/temp_sensor/build/test/preprocess/files/AdcHardwareConfigurator.h
|
398
|
+
- examples/temp_sensor/build/test/preprocess/files/AdcModel.h
|
399
|
+
- examples/temp_sensor/build/test/preprocess/files/AdcTemperatureSensor.h
|
400
|
+
- examples/temp_sensor/build/test/preprocess/files/Executor.h
|
401
|
+
- examples/temp_sensor/build/test/preprocess/files/IntrinsicsWrapper.h
|
402
|
+
- examples/temp_sensor/build/test/preprocess/files/Model.h
|
403
|
+
- examples/temp_sensor/build/test/preprocess/files/TaskScheduler.h
|
404
|
+
- examples/temp_sensor/build/test/preprocess/files/TemperatureCalculator.h
|
405
|
+
- examples/temp_sensor/build/test/preprocess/files/TemperatureFilter.h
|
406
|
+
- examples/temp_sensor/build/test/preprocess/files/TestAdcConductor.c
|
407
|
+
- examples/temp_sensor/build/test/preprocess/files/TestAdcHardware.c
|
408
|
+
- examples/temp_sensor/build/test/preprocess/files/TestAdcModel.c
|
409
|
+
- examples/temp_sensor/build/test/preprocess/files/TestExecutor.c
|
410
|
+
- examples/temp_sensor/build/test/preprocess/files/TestMain.c
|
411
|
+
- examples/temp_sensor/build/test/preprocess/files/TestModel.c
|
412
|
+
- examples/temp_sensor/build/test/preprocess/files/TestTaskScheduler.c
|
413
|
+
- examples/temp_sensor/build/test/preprocess/files/TestTemperatureCalculator.c
|
414
|
+
- examples/temp_sensor/build/test/preprocess/files/TestTemperatureFilter.c
|
415
|
+
- examples/temp_sensor/build/test/preprocess/files/TestTimerConductor.c
|
416
|
+
- examples/temp_sensor/build/test/preprocess/files/TestTimerHardware.c
|
417
|
+
- examples/temp_sensor/build/test/preprocess/files/TestTimerModel.c
|
418
|
+
- examples/temp_sensor/build/test/preprocess/files/TestUsartBaudRateRegisterCalculator.c
|
419
|
+
- examples/temp_sensor/build/test/preprocess/files/TestUsartConductor.c
|
420
|
+
- examples/temp_sensor/build/test/preprocess/files/TestUsartHardware.c
|
421
|
+
- examples/temp_sensor/build/test/preprocess/files/TestUsartModel.c
|
422
|
+
- examples/temp_sensor/build/test/preprocess/files/TimerConductor.h
|
423
|
+
- examples/temp_sensor/build/test/preprocess/files/TimerConfigurator.h
|
424
|
+
- examples/temp_sensor/build/test/preprocess/files/TimerHardware.h
|
425
|
+
- examples/temp_sensor/build/test/preprocess/files/TimerInterruptHandler.h
|
426
|
+
- examples/temp_sensor/build/test/preprocess/files/TimerModel.h
|
427
|
+
- examples/temp_sensor/build/test/preprocess/files/UsartBaudRateRegisterCalculator.h
|
428
|
+
- examples/temp_sensor/build/test/preprocess/files/UsartConductor.h
|
429
|
+
- examples/temp_sensor/build/test/preprocess/files/UsartConfigurator.h
|
430
|
+
- examples/temp_sensor/build/test/preprocess/files/UsartHardware.h
|
431
|
+
- examples/temp_sensor/build/test/preprocess/files/UsartModel.h
|
432
|
+
- examples/temp_sensor/build/test/preprocess/files/UsartPutChar.h
|
433
|
+
- examples/temp_sensor/build/test/preprocess/includes/AdcConductor.h
|
434
|
+
- examples/temp_sensor/build/test/preprocess/includes/AdcHardware.h
|
435
|
+
- examples/temp_sensor/build/test/preprocess/includes/AdcHardwareConfigurator.h
|
436
|
+
- examples/temp_sensor/build/test/preprocess/includes/AdcModel.h
|
437
|
+
- examples/temp_sensor/build/test/preprocess/includes/AdcTemperatureSensor.h
|
438
|
+
- examples/temp_sensor/build/test/preprocess/includes/Executor.h
|
439
|
+
- examples/temp_sensor/build/test/preprocess/includes/IntrinsicsWrapper.h
|
440
|
+
- examples/temp_sensor/build/test/preprocess/includes/Model.h
|
441
|
+
- examples/temp_sensor/build/test/preprocess/includes/TaskScheduler.h
|
442
|
+
- examples/temp_sensor/build/test/preprocess/includes/TemperatureCalculator.h
|
443
|
+
- examples/temp_sensor/build/test/preprocess/includes/TemperatureFilter.h
|
444
|
+
- examples/temp_sensor/build/test/preprocess/includes/TestAdcConductor.c
|
445
|
+
- examples/temp_sensor/build/test/preprocess/includes/TestAdcHardware.c
|
446
|
+
- examples/temp_sensor/build/test/preprocess/includes/TestAdcModel.c
|
447
|
+
- examples/temp_sensor/build/test/preprocess/includes/TestExecutor.c
|
448
|
+
- examples/temp_sensor/build/test/preprocess/includes/TestMain.c
|
449
|
+
- examples/temp_sensor/build/test/preprocess/includes/TestModel.c
|
450
|
+
- examples/temp_sensor/build/test/preprocess/includes/TestTaskScheduler.c
|
451
|
+
- examples/temp_sensor/build/test/preprocess/includes/TestTemperatureCalculator.c
|
452
|
+
- examples/temp_sensor/build/test/preprocess/includes/TestTemperatureFilter.c
|
453
|
+
- examples/temp_sensor/build/test/preprocess/includes/TestTimerConductor.c
|
454
|
+
- examples/temp_sensor/build/test/preprocess/includes/TestTimerHardware.c
|
455
|
+
- examples/temp_sensor/build/test/preprocess/includes/TestTimerModel.c
|
456
|
+
- examples/temp_sensor/build/test/preprocess/includes/TestUsartBaudRateRegisterCalculator.c
|
457
|
+
- examples/temp_sensor/build/test/preprocess/includes/TestUsartConductor.c
|
458
|
+
- examples/temp_sensor/build/test/preprocess/includes/TestUsartHardware.c
|
459
|
+
- examples/temp_sensor/build/test/preprocess/includes/TestUsartModel.c
|
460
|
+
- examples/temp_sensor/build/test/preprocess/includes/TimerConductor.h
|
461
|
+
- examples/temp_sensor/build/test/preprocess/includes/TimerConfigurator.h
|
462
|
+
- examples/temp_sensor/build/test/preprocess/includes/TimerHardware.h
|
463
|
+
- examples/temp_sensor/build/test/preprocess/includes/TimerInterruptHandler.h
|
464
|
+
- examples/temp_sensor/build/test/preprocess/includes/TimerModel.h
|
465
|
+
- examples/temp_sensor/build/test/preprocess/includes/UsartBaudRateRegisterCalculator.h
|
466
|
+
- examples/temp_sensor/build/test/preprocess/includes/UsartConductor.h
|
467
|
+
- examples/temp_sensor/build/test/preprocess/includes/UsartConfigurator.h
|
468
|
+
- examples/temp_sensor/build/test/preprocess/includes/UsartHardware.h
|
469
|
+
- examples/temp_sensor/build/test/preprocess/includes/UsartModel.h
|
470
|
+
- examples/temp_sensor/build/test/preprocess/includes/UsartPutChar.h
|
471
|
+
- examples/temp_sensor/build/test/results/TestAdcConductor.pass
|
472
|
+
- examples/temp_sensor/build/test/results/TestAdcHardware.pass
|
473
|
+
- examples/temp_sensor/build/test/results/TestAdcModel.pass
|
474
|
+
- examples/temp_sensor/build/test/results/TestExecutor.pass
|
475
|
+
- examples/temp_sensor/build/test/results/TestMain.pass
|
476
|
+
- examples/temp_sensor/build/test/results/TestModel.pass
|
477
|
+
- examples/temp_sensor/build/test/results/TestTaskScheduler.pass
|
478
|
+
- examples/temp_sensor/build/test/results/TestTemperatureCalculator.pass
|
479
|
+
- examples/temp_sensor/build/test/results/TestTemperatureFilter.pass
|
480
|
+
- examples/temp_sensor/build/test/results/TestTimerConductor.pass
|
481
|
+
- examples/temp_sensor/build/test/results/TestTimerHardware.pass
|
482
|
+
- examples/temp_sensor/build/test/results/TestTimerModel.pass
|
483
|
+
- examples/temp_sensor/build/test/results/TestUsartBaudRateRegisterCalculator.pass
|
484
|
+
- examples/temp_sensor/build/test/results/TestUsartConductor.pass
|
485
|
+
- examples/temp_sensor/build/test/results/TestUsartHardware.pass
|
486
|
+
- examples/temp_sensor/build/test/results/TestUsartModel.pass
|
487
|
+
- examples/temp_sensor/build/test/runners/TestAdcConductor_runner.c
|
488
|
+
- examples/temp_sensor/build/test/runners/TestAdcHardware_runner.c
|
489
|
+
- examples/temp_sensor/build/test/runners/TestAdcModel_runner.c
|
490
|
+
- examples/temp_sensor/build/test/runners/TestExecutor_runner.c
|
491
|
+
- examples/temp_sensor/build/test/runners/TestMain_runner.c
|
492
|
+
- examples/temp_sensor/build/test/runners/TestModel_runner.c
|
493
|
+
- examples/temp_sensor/build/test/runners/TestTaskScheduler_runner.c
|
494
|
+
- examples/temp_sensor/build/test/runners/TestTemperatureCalculator_runner.c
|
495
|
+
- examples/temp_sensor/build/test/runners/TestTemperatureFilter_runner.c
|
496
|
+
- examples/temp_sensor/build/test/runners/TestTimerConductor_runner.c
|
497
|
+
- examples/temp_sensor/build/test/runners/TestTimerHardware_runner.c
|
498
|
+
- examples/temp_sensor/build/test/runners/TestTimerModel_runner.c
|
499
|
+
- examples/temp_sensor/build/test/runners/TestUsartBaudRateRegisterCalculator_runner.c
|
500
|
+
- examples/temp_sensor/build/test/runners/TestUsartConductor_runner.c
|
501
|
+
- examples/temp_sensor/build/test/runners/TestUsartHardware_runner.c
|
502
|
+
- examples/temp_sensor/build/test/runners/TestUsartModel_runner.c
|
115
503
|
- examples/temp_sensor/project.yml
|
116
|
-
- examples/temp_sensor/rakefile.rb
|
117
504
|
- examples/temp_sensor/src/AdcConductor.c
|
118
505
|
- examples/temp_sensor/src/AdcConductor.h
|
119
506
|
- examples/temp_sensor/src/AdcHardware.c
|
@@ -263,6 +650,7 @@ files:
|
|
263
650
|
- lib/ceedling/version.rb
|
264
651
|
- lib/ceedling/yaml_wrapper.rb
|
265
652
|
- license.txt
|
653
|
+
- out.fail
|
266
654
|
- plugins/beep/README.md
|
267
655
|
- plugins/beep/lib/beep.rb
|
268
656
|
- plugins/bullseye/README.md
|
@@ -396,129 +784,6 @@ files:
|
|
396
784
|
- vendor/c_exception/project.yml
|
397
785
|
- vendor/c_exception/test/TestException.c
|
398
786
|
- vendor/c_exception/test/support/CExceptionConfig.h
|
399
|
-
- vendor/c_exception/vendor/unity/README.md
|
400
|
-
- vendor/c_exception/vendor/unity/auto/colour_prompt.rb
|
401
|
-
- vendor/c_exception/vendor/unity/auto/colour_reporter.rb
|
402
|
-
- vendor/c_exception/vendor/unity/auto/generate_config.yml
|
403
|
-
- vendor/c_exception/vendor/unity/auto/generate_module.rb
|
404
|
-
- vendor/c_exception/vendor/unity/auto/generate_test_runner.rb
|
405
|
-
- vendor/c_exception/vendor/unity/auto/parse_output.rb
|
406
|
-
- vendor/c_exception/vendor/unity/auto/stylize_as_junit.rb
|
407
|
-
- vendor/c_exception/vendor/unity/auto/test_file_filter.rb
|
408
|
-
- vendor/c_exception/vendor/unity/auto/type_sanitizer.rb
|
409
|
-
- vendor/c_exception/vendor/unity/auto/unity_test_summary.py
|
410
|
-
- vendor/c_exception/vendor/unity/auto/unity_test_summary.rb
|
411
|
-
- vendor/c_exception/vendor/unity/auto/unity_to_junit.py
|
412
|
-
- vendor/c_exception/vendor/unity/docs/ThrowTheSwitchCodingStandard.md
|
413
|
-
- vendor/c_exception/vendor/unity/docs/UnityAssertionsCheatSheetSuitableforPrintingandPossiblyFraming.pdf
|
414
|
-
- vendor/c_exception/vendor/unity/docs/UnityAssertionsReference.md
|
415
|
-
- vendor/c_exception/vendor/unity/docs/UnityConfigurationGuide.md
|
416
|
-
- vendor/c_exception/vendor/unity/docs/UnityGettingStartedGuide.md
|
417
|
-
- vendor/c_exception/vendor/unity/docs/UnityHelperScriptsGuide.md
|
418
|
-
- vendor/c_exception/vendor/unity/docs/license.txt
|
419
|
-
- vendor/c_exception/vendor/unity/examples/example_1/makefile
|
420
|
-
- vendor/c_exception/vendor/unity/examples/example_1/readme.txt
|
421
|
-
- vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode.c
|
422
|
-
- vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode.h
|
423
|
-
- vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode2.c
|
424
|
-
- vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode2.h
|
425
|
-
- vendor/c_exception/vendor/unity/examples/example_1/test/TestProductionCode.c
|
426
|
-
- vendor/c_exception/vendor/unity/examples/example_1/test/TestProductionCode2.c
|
427
|
-
- vendor/c_exception/vendor/unity/examples/example_1/test/test_runners/TestProductionCode2_Runner.c
|
428
|
-
- vendor/c_exception/vendor/unity/examples/example_1/test/test_runners/TestProductionCode_Runner.c
|
429
|
-
- vendor/c_exception/vendor/unity/examples/example_2/makefile
|
430
|
-
- vendor/c_exception/vendor/unity/examples/example_2/readme.txt
|
431
|
-
- vendor/c_exception/vendor/unity/examples/example_2/src/ProductionCode.c
|
432
|
-
- vendor/c_exception/vendor/unity/examples/example_2/src/ProductionCode.h
|
433
|
-
- vendor/c_exception/vendor/unity/examples/example_2/src/ProductionCode2.c
|
434
|
-
- vendor/c_exception/vendor/unity/examples/example_2/src/ProductionCode2.h
|
435
|
-
- vendor/c_exception/vendor/unity/examples/example_2/test/TestProductionCode.c
|
436
|
-
- vendor/c_exception/vendor/unity/examples/example_2/test/TestProductionCode2.c
|
437
|
-
- vendor/c_exception/vendor/unity/examples/example_2/test/test_runners/TestProductionCode2_Runner.c
|
438
|
-
- vendor/c_exception/vendor/unity/examples/example_2/test/test_runners/TestProductionCode_Runner.c
|
439
|
-
- vendor/c_exception/vendor/unity/examples/example_2/test/test_runners/all_tests.c
|
440
|
-
- vendor/c_exception/vendor/unity/examples/example_3/helper/UnityHelper.c
|
441
|
-
- vendor/c_exception/vendor/unity/examples/example_3/helper/UnityHelper.h
|
442
|
-
- vendor/c_exception/vendor/unity/examples/example_3/rakefile.rb
|
443
|
-
- vendor/c_exception/vendor/unity/examples/example_3/rakefile_helper.rb
|
444
|
-
- vendor/c_exception/vendor/unity/examples/example_3/readme.txt
|
445
|
-
- vendor/c_exception/vendor/unity/examples/example_3/src/ProductionCode.c
|
446
|
-
- vendor/c_exception/vendor/unity/examples/example_3/src/ProductionCode.h
|
447
|
-
- vendor/c_exception/vendor/unity/examples/example_3/src/ProductionCode2.c
|
448
|
-
- vendor/c_exception/vendor/unity/examples/example_3/src/ProductionCode2.h
|
449
|
-
- vendor/c_exception/vendor/unity/examples/example_3/target_gcc_32.yml
|
450
|
-
- vendor/c_exception/vendor/unity/examples/example_3/test/TestProductionCode.c
|
451
|
-
- vendor/c_exception/vendor/unity/examples/example_3/test/TestProductionCode2.c
|
452
|
-
- vendor/c_exception/vendor/unity/examples/unity_config.h
|
453
|
-
- vendor/c_exception/vendor/unity/extras/eclipse/error_parsers.txt
|
454
|
-
- vendor/c_exception/vendor/unity/extras/fixture/rakefile.rb
|
455
|
-
- vendor/c_exception/vendor/unity/extras/fixture/rakefile_helper.rb
|
456
|
-
- vendor/c_exception/vendor/unity/extras/fixture/readme.txt
|
457
|
-
- vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.c
|
458
|
-
- vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.h
|
459
|
-
- vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_internals.h
|
460
|
-
- vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h
|
461
|
-
- vendor/c_exception/vendor/unity/extras/fixture/test/Makefile
|
462
|
-
- vendor/c_exception/vendor/unity/extras/fixture/test/main/AllTests.c
|
463
|
-
- vendor/c_exception/vendor/unity/extras/fixture/test/template_fixture_tests.c
|
464
|
-
- vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_Test.c
|
465
|
-
- vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c
|
466
|
-
- vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.c
|
467
|
-
- vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.h
|
468
|
-
- vendor/c_exception/vendor/unity/release/build.info
|
469
|
-
- vendor/c_exception/vendor/unity/release/version.info
|
470
|
-
- vendor/c_exception/vendor/unity/src/unity.c
|
471
|
-
- vendor/c_exception/vendor/unity/src/unity.h
|
472
|
-
- vendor/c_exception/vendor/unity/src/unity_internals.h
|
473
|
-
- vendor/c_exception/vendor/unity/test/Makefile
|
474
|
-
- vendor/c_exception/vendor/unity/test/expectdata/testsample_cmd.c
|
475
|
-
- vendor/c_exception/vendor/unity/test/expectdata/testsample_def.c
|
476
|
-
- vendor/c_exception/vendor/unity/test/expectdata/testsample_head1.c
|
477
|
-
- vendor/c_exception/vendor/unity/test/expectdata/testsample_head1.h
|
478
|
-
- vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_cmd.c
|
479
|
-
- vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_def.c
|
480
|
-
- vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_head1.c
|
481
|
-
- vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_head1.h
|
482
|
-
- vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new1.c
|
483
|
-
- vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new2.c
|
484
|
-
- vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_param.c
|
485
|
-
- vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run1.c
|
486
|
-
- vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run2.c
|
487
|
-
- vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_yaml.c
|
488
|
-
- vendor/c_exception/vendor/unity/test/expectdata/testsample_new1.c
|
489
|
-
- vendor/c_exception/vendor/unity/test/expectdata/testsample_new2.c
|
490
|
-
- vendor/c_exception/vendor/unity/test/expectdata/testsample_param.c
|
491
|
-
- vendor/c_exception/vendor/unity/test/expectdata/testsample_run1.c
|
492
|
-
- vendor/c_exception/vendor/unity/test/expectdata/testsample_run2.c
|
493
|
-
- vendor/c_exception/vendor/unity/test/expectdata/testsample_yaml.c
|
494
|
-
- vendor/c_exception/vendor/unity/test/rakefile
|
495
|
-
- vendor/c_exception/vendor/unity/test/rakefile_helper.rb
|
496
|
-
- vendor/c_exception/vendor/unity/test/spec/generate_module_existing_file_spec.rb
|
497
|
-
- vendor/c_exception/vendor/unity/test/targets/clang_file.yml
|
498
|
-
- vendor/c_exception/vendor/unity/test/targets/clang_strict.yml
|
499
|
-
- vendor/c_exception/vendor/unity/test/targets/gcc_32.yml
|
500
|
-
- vendor/c_exception/vendor/unity/test/targets/gcc_64.yml
|
501
|
-
- vendor/c_exception/vendor/unity/test/targets/gcc_auto_limits.yml
|
502
|
-
- vendor/c_exception/vendor/unity/test/targets/gcc_auto_stdint.yml
|
503
|
-
- vendor/c_exception/vendor/unity/test/targets/gcc_manual_math.yml
|
504
|
-
- vendor/c_exception/vendor/unity/test/targets/hitech_picc18.yml
|
505
|
-
- vendor/c_exception/vendor/unity/test/targets/iar_arm_v4.yml
|
506
|
-
- vendor/c_exception/vendor/unity/test/targets/iar_arm_v5.yml
|
507
|
-
- vendor/c_exception/vendor/unity/test/targets/iar_arm_v5_3.yml
|
508
|
-
- vendor/c_exception/vendor/unity/test/targets/iar_armcortex_LM3S9B92_v5_4.yml
|
509
|
-
- vendor/c_exception/vendor/unity/test/targets/iar_cortexm3_v5.yml
|
510
|
-
- vendor/c_exception/vendor/unity/test/targets/iar_msp430.yml
|
511
|
-
- vendor/c_exception/vendor/unity/test/targets/iar_sh2a_v6.yml
|
512
|
-
- vendor/c_exception/vendor/unity/test/testdata/CException.h
|
513
|
-
- vendor/c_exception/vendor/unity/test/testdata/Defs.h
|
514
|
-
- vendor/c_exception/vendor/unity/test/testdata/cmock.h
|
515
|
-
- vendor/c_exception/vendor/unity/test/testdata/mockMock.h
|
516
|
-
- vendor/c_exception/vendor/unity/test/testdata/testRunnerGenerator.c
|
517
|
-
- vendor/c_exception/vendor/unity/test/testdata/testRunnerGeneratorSmall.c
|
518
|
-
- vendor/c_exception/vendor/unity/test/testdata/testRunnerGeneratorWithMocks.c
|
519
|
-
- vendor/c_exception/vendor/unity/test/tests/test_generate_test_runner.rb
|
520
|
-
- vendor/c_exception/vendor/unity/test/tests/testparameterized.c
|
521
|
-
- vendor/c_exception/vendor/unity/test/tests/testunity.c
|
522
787
|
- vendor/cmock/Gemfile
|
523
788
|
- vendor/cmock/LICENSE.txt
|
524
789
|
- vendor/cmock/README.md
|
@@ -625,6 +890,7 @@ files:
|
|
625
890
|
- vendor/cmock/lib/cmock_generator_plugin_expect_any_args.rb
|
626
891
|
- vendor/cmock/lib/cmock_generator_plugin_ignore.rb
|
627
892
|
- vendor/cmock/lib/cmock_generator_plugin_ignore_arg.rb
|
893
|
+
- vendor/cmock/lib/cmock_generator_plugin_ignore_stateless.rb
|
628
894
|
- vendor/cmock/lib/cmock_generator_plugin_return_thru_ptr.rb
|
629
895
|
- vendor/cmock/lib/cmock_generator_utils.rb
|
630
896
|
- vendor/cmock/lib/cmock_header_parser.rb
|
@@ -718,6 +984,7 @@ files:
|
|
718
984
|
- vendor/cmock/test/system/test_interactions/fancy_pointer_handling.yml
|
719
985
|
- vendor/cmock/test/system/test_interactions/function_pointer_handling.yml
|
720
986
|
- vendor/cmock/test/system/test_interactions/ignore_and_return.yml
|
987
|
+
- vendor/cmock/test/system/test_interactions/ignore_and_return_stateless.yml
|
721
988
|
- vendor/cmock/test/system/test_interactions/ignore_strict_mock_calling.yml
|
722
989
|
- vendor/cmock/test/system/test_interactions/newer_standards_stuff1.yml
|
723
990
|
- vendor/cmock/test/system/test_interactions/nonstandard_parsed_stuff_1.yml
|
@@ -752,6 +1019,7 @@ files:
|
|
752
1019
|
- vendor/cmock/test/unit/cmock_generator_plugin_expect_any_args_test.rb
|
753
1020
|
- vendor/cmock/test/unit/cmock_generator_plugin_expect_b_test.rb
|
754
1021
|
- vendor/cmock/test/unit/cmock_generator_plugin_ignore_arg_test.rb
|
1022
|
+
- vendor/cmock/test/unit/cmock_generator_plugin_ignore_stateless_test.rb
|
755
1023
|
- vendor/cmock/test/unit/cmock_generator_plugin_ignore_test.rb
|
756
1024
|
- vendor/cmock/test/unit/cmock_generator_plugin_return_thru_ptr_test.rb
|
757
1025
|
- vendor/cmock/test/unit/cmock_generator_utils_test.rb
|
@@ -779,129 +1047,6 @@ files:
|
|
779
1047
|
- vendor/cmock/vendor/c_exception/project.yml
|
780
1048
|
- vendor/cmock/vendor/c_exception/test/TestException.c
|
781
1049
|
- vendor/cmock/vendor/c_exception/test/support/CExceptionConfig.h
|
782
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/README.md
|
783
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/auto/colour_prompt.rb
|
784
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/auto/colour_reporter.rb
|
785
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/auto/generate_config.yml
|
786
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/auto/generate_module.rb
|
787
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/auto/generate_test_runner.rb
|
788
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/auto/parse_output.rb
|
789
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/auto/stylize_as_junit.rb
|
790
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/auto/test_file_filter.rb
|
791
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/auto/type_sanitizer.rb
|
792
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/auto/unity_test_summary.py
|
793
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/auto/unity_test_summary.rb
|
794
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/auto/unity_to_junit.py
|
795
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/docs/ThrowTheSwitchCodingStandard.md
|
796
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/docs/UnityAssertionsCheatSheetSuitableforPrintingandPossiblyFraming.pdf
|
797
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/docs/UnityAssertionsReference.md
|
798
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/docs/UnityConfigurationGuide.md
|
799
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/docs/UnityGettingStartedGuide.md
|
800
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/docs/UnityHelperScriptsGuide.md
|
801
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/docs/license.txt
|
802
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/makefile
|
803
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/readme.txt
|
804
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode.c
|
805
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode.h
|
806
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode2.c
|
807
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode2.h
|
808
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/test/TestProductionCode.c
|
809
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/test/TestProductionCode2.c
|
810
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/test/test_runners/TestProductionCode2_Runner.c
|
811
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/test/test_runners/TestProductionCode_Runner.c
|
812
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/makefile
|
813
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/readme.txt
|
814
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/src/ProductionCode.c
|
815
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/src/ProductionCode.h
|
816
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/src/ProductionCode2.c
|
817
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/src/ProductionCode2.h
|
818
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/test/TestProductionCode.c
|
819
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/test/TestProductionCode2.c
|
820
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/test/test_runners/TestProductionCode2_Runner.c
|
821
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/test/test_runners/TestProductionCode_Runner.c
|
822
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/test/test_runners/all_tests.c
|
823
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/helper/UnityHelper.c
|
824
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/helper/UnityHelper.h
|
825
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/rakefile.rb
|
826
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/rakefile_helper.rb
|
827
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/readme.txt
|
828
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/src/ProductionCode.c
|
829
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/src/ProductionCode.h
|
830
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/src/ProductionCode2.c
|
831
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/src/ProductionCode2.h
|
832
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/target_gcc_32.yml
|
833
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/test/TestProductionCode.c
|
834
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/test/TestProductionCode2.c
|
835
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/examples/unity_config.h
|
836
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/extras/eclipse/error_parsers.txt
|
837
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/rakefile.rb
|
838
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/rakefile_helper.rb
|
839
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/readme.txt
|
840
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.c
|
841
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.h
|
842
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_internals.h
|
843
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h
|
844
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/Makefile
|
845
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/main/AllTests.c
|
846
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/template_fixture_tests.c
|
847
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_Test.c
|
848
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c
|
849
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.c
|
850
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.h
|
851
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/release/build.info
|
852
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/release/version.info
|
853
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/src/unity.c
|
854
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/src/unity.h
|
855
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/src/unity_internals.h
|
856
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/Makefile
|
857
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_cmd.c
|
858
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_def.c
|
859
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_head1.c
|
860
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_head1.h
|
861
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_cmd.c
|
862
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_def.c
|
863
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_head1.c
|
864
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_head1.h
|
865
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new1.c
|
866
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new2.c
|
867
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_param.c
|
868
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run1.c
|
869
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run2.c
|
870
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_yaml.c
|
871
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_new1.c
|
872
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_new2.c
|
873
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_param.c
|
874
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_run1.c
|
875
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_run2.c
|
876
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_yaml.c
|
877
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/rakefile
|
878
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/rakefile_helper.rb
|
879
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/spec/generate_module_existing_file_spec.rb
|
880
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/targets/clang_file.yml
|
881
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/targets/clang_strict.yml
|
882
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/targets/gcc_32.yml
|
883
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/targets/gcc_64.yml
|
884
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/targets/gcc_auto_limits.yml
|
885
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/targets/gcc_auto_stdint.yml
|
886
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/targets/gcc_manual_math.yml
|
887
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/targets/hitech_picc18.yml
|
888
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/targets/iar_arm_v4.yml
|
889
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/targets/iar_arm_v5.yml
|
890
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/targets/iar_arm_v5_3.yml
|
891
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/targets/iar_armcortex_LM3S9B92_v5_4.yml
|
892
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/targets/iar_cortexm3_v5.yml
|
893
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/targets/iar_msp430.yml
|
894
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/targets/iar_sh2a_v6.yml
|
895
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/CException.h
|
896
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/Defs.h
|
897
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/cmock.h
|
898
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/mockMock.h
|
899
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/testRunnerGenerator.c
|
900
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/testRunnerGeneratorSmall.c
|
901
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/testRunnerGeneratorWithMocks.c
|
902
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/tests/test_generate_test_runner.rb
|
903
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/tests/testparameterized.c
|
904
|
-
- vendor/cmock/vendor/c_exception/vendor/unity/test/tests/testunity.c
|
905
1050
|
- vendor/cmock/vendor/unity/CMakeLists.txt
|
906
1051
|
- vendor/cmock/vendor/unity/LICENSE.txt
|
907
1052
|
- vendor/cmock/vendor/unity/README.md
|
@@ -1054,12 +1199,6 @@ files:
|
|
1054
1199
|
- vendor/cmock/vendor/unity/test/tests/test_unity_parameterized.c
|
1055
1200
|
- vendor/cmock/vendor/unity/test/tests/test_unity_strings.c
|
1056
1201
|
- vendor/cmock/vendor/unity/unityConfig.cmake
|
1057
|
-
- vendor/deep_merge/MIT-LICENSE
|
1058
|
-
- vendor/deep_merge/README
|
1059
|
-
- vendor/deep_merge/Rakefile
|
1060
|
-
- vendor/deep_merge/lib/deep_merge.rb
|
1061
|
-
- vendor/deep_merge/pkg/deep_merge-0.1.0.gem
|
1062
|
-
- vendor/deep_merge/test/test_deep_merge.rb
|
1063
1202
|
- vendor/diy/History.txt
|
1064
1203
|
- vendor/diy/README.rdoc
|
1065
1204
|
- vendor/diy/Rakefile
|
@@ -1362,8 +1501,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1362
1501
|
- !ruby/object:Gem::Version
|
1363
1502
|
version: '0'
|
1364
1503
|
requirements: []
|
1365
|
-
|
1366
|
-
rubygems_version: 2.4.3
|
1504
|
+
rubygems_version: 3.0.3
|
1367
1505
|
signing_key:
|
1368
1506
|
specification_version: 4
|
1369
1507
|
summary: Ceedling is a build automation tool for C unit test suites that packages
|