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
@@ -1,51 +0,0 @@
|
|
1
|
-
/* Copyright (c) 2010 James Grenning and Contributed to Unity Project
|
2
|
-
* ==========================================
|
3
|
-
* Unity Project - A Test Framework for C
|
4
|
-
* Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
|
5
|
-
* [Released under MIT License. Please refer to license.txt for details]
|
6
|
-
* ========================================== */
|
7
|
-
|
8
|
-
#ifndef UNITY_FIXTURE_INTERNALS_H_
|
9
|
-
#define UNITY_FIXTURE_INTERNALS_H_
|
10
|
-
|
11
|
-
#ifdef __cplusplus
|
12
|
-
extern "C"
|
13
|
-
{
|
14
|
-
#endif
|
15
|
-
|
16
|
-
struct UNITY_FIXTURE_T
|
17
|
-
{
|
18
|
-
int Verbose;
|
19
|
-
unsigned int RepeatCount;
|
20
|
-
const char* NameFilter;
|
21
|
-
const char* GroupFilter;
|
22
|
-
};
|
23
|
-
extern struct UNITY_FIXTURE_T UnityFixture;
|
24
|
-
|
25
|
-
typedef void unityfunction(void);
|
26
|
-
void UnityTestRunner(unityfunction* setup,
|
27
|
-
unityfunction* body,
|
28
|
-
unityfunction* teardown,
|
29
|
-
const char* printableName,
|
30
|
-
const char* group,
|
31
|
-
const char* name,
|
32
|
-
const char* file, unsigned int line);
|
33
|
-
|
34
|
-
void UnityIgnoreTest(const char* printableName, const char* group, const char* name);
|
35
|
-
void UnityMalloc_StartTest(void);
|
36
|
-
void UnityMalloc_EndTest(void);
|
37
|
-
int UnityGetCommandLineOptions(int argc, const char* argv[]);
|
38
|
-
void UnityConcludeFixtureTest(void);
|
39
|
-
|
40
|
-
void UnityPointer_Set(void** ptr, void* newValue, UNITY_LINE_TYPE line);
|
41
|
-
void UnityPointer_UndoAllSets(void);
|
42
|
-
void UnityPointer_Init(void);
|
43
|
-
#ifndef UNITY_MAX_POINTERS
|
44
|
-
#define UNITY_MAX_POINTERS 5
|
45
|
-
#endif
|
46
|
-
|
47
|
-
#ifdef __cplusplus
|
48
|
-
}
|
49
|
-
#endif
|
50
|
-
|
51
|
-
#endif /* UNITY_FIXTURE_INTERNALS_H_ */
|
@@ -1,47 +0,0 @@
|
|
1
|
-
/* Copyright (c) 2010 James Grenning and Contributed to Unity Project
|
2
|
-
* ==========================================
|
3
|
-
* Unity Project - A Test Framework for C
|
4
|
-
* Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
|
5
|
-
* [Released under MIT License. Please refer to license.txt for details]
|
6
|
-
* ========================================== */
|
7
|
-
|
8
|
-
#ifndef UNITY_FIXTURE_MALLOC_OVERRIDES_H_
|
9
|
-
#define UNITY_FIXTURE_MALLOC_OVERRIDES_H_
|
10
|
-
|
11
|
-
#include <stddef.h>
|
12
|
-
|
13
|
-
#ifdef UNITY_EXCLUDE_STDLIB_MALLOC
|
14
|
-
/* Define this macro to remove the use of stdlib.h, malloc, and free.
|
15
|
-
* Many embedded systems do not have a heap or malloc/free by default.
|
16
|
-
* This internal unity_malloc() provides allocated memory deterministically from
|
17
|
-
* the end of an array only, unity_free() only releases from end-of-array,
|
18
|
-
* blocks are not coalesced, and memory not freed in LIFO order is stranded. */
|
19
|
-
#ifndef UNITY_INTERNAL_HEAP_SIZE_BYTES
|
20
|
-
#define UNITY_INTERNAL_HEAP_SIZE_BYTES 256
|
21
|
-
#endif
|
22
|
-
#endif
|
23
|
-
|
24
|
-
/* These functions are used by the Unity Fixture to allocate and release memory
|
25
|
-
* on the heap and can be overridden with platform-specific implementations.
|
26
|
-
* For example, when using FreeRTOS UNITY_FIXTURE_MALLOC becomes pvPortMalloc()
|
27
|
-
* and UNITY_FIXTURE_FREE becomes vPortFree(). */
|
28
|
-
#if !defined(UNITY_FIXTURE_MALLOC) || !defined(UNITY_FIXTURE_FREE)
|
29
|
-
#include <stdlib.h>
|
30
|
-
#define UNITY_FIXTURE_MALLOC(size) malloc(size)
|
31
|
-
#define UNITY_FIXTURE_FREE(ptr) free(ptr)
|
32
|
-
#else
|
33
|
-
extern void* UNITY_FIXTURE_MALLOC(size_t size);
|
34
|
-
extern void UNITY_FIXTURE_FREE(void* ptr);
|
35
|
-
#endif
|
36
|
-
|
37
|
-
#define malloc unity_malloc
|
38
|
-
#define calloc unity_calloc
|
39
|
-
#define realloc unity_realloc
|
40
|
-
#define free unity_free
|
41
|
-
|
42
|
-
void* unity_malloc(size_t size);
|
43
|
-
void* unity_calloc(size_t num, size_t size);
|
44
|
-
void* unity_realloc(void * oldMem, size_t size);
|
45
|
-
void unity_free(void * mem);
|
46
|
-
|
47
|
-
#endif /* UNITY_FIXTURE_MALLOC_OVERRIDES_H_ */
|
@@ -1,74 +0,0 @@
|
|
1
|
-
CC = gcc
|
2
|
-
ifeq ($(shell uname -s), Darwin)
|
3
|
-
CC = clang
|
4
|
-
endif
|
5
|
-
#DEBUG = -O0 -g
|
6
|
-
CFLAGS += -std=c99 -pedantic -Wall -Wextra -Werror
|
7
|
-
CFLAGS += $(DEBUG)
|
8
|
-
DEFINES = -D UNITY_OUTPUT_CHAR=UnityOutputCharSpy_OutputChar
|
9
|
-
SRC = ../src/unity_fixture.c \
|
10
|
-
../../../src/unity.c \
|
11
|
-
unity_fixture_Test.c \
|
12
|
-
unity_fixture_TestRunner.c \
|
13
|
-
unity_output_Spy.c \
|
14
|
-
main/AllTests.c
|
15
|
-
|
16
|
-
INC_DIR = -I../src -I../../../src/
|
17
|
-
BUILD_DIR = ../build
|
18
|
-
TARGET = ../build/fixture_tests.exe
|
19
|
-
|
20
|
-
all: default noStdlibMalloc 32bits
|
21
|
-
|
22
|
-
default: $(BUILD_DIR)
|
23
|
-
$(CC) $(CFLAGS) $(DEFINES) $(SRC) $(INC_DIR) -o $(TARGET) -D UNITY_SUPPORT_64
|
24
|
-
@ echo "default build"
|
25
|
-
./$(TARGET)
|
26
|
-
|
27
|
-
32bits: $(BUILD_DIR)
|
28
|
-
$(CC) $(CFLAGS) $(DEFINES) $(SRC) $(INC_DIR) -o $(TARGET) -m32
|
29
|
-
@ echo "32bits build"
|
30
|
-
./$(TARGET)
|
31
|
-
|
32
|
-
noStdlibMalloc: $(BUILD_DIR)
|
33
|
-
$(CC) $(CFLAGS) $(DEFINES) $(SRC) $(INC_DIR) -o $(TARGET) -D UNITY_EXCLUDE_STDLIB_MALLOC
|
34
|
-
@ echo "build with noStdlibMalloc"
|
35
|
-
./$(TARGET)
|
36
|
-
|
37
|
-
C89: CFLAGS += -D UNITY_EXCLUDE_STDINT_H # C89 did not have type 'long long', <stdint.h>
|
38
|
-
C89: $(BUILD_DIR)
|
39
|
-
$(CC) $(CFLAGS) $(DEFINES) $(SRC) $(INC_DIR) -o $(TARGET) -std=c89 && ./$(TARGET)
|
40
|
-
$(CC) $(CFLAGS) $(DEFINES) $(SRC) $(INC_DIR) -o $(TARGET) -D UNITY_EXCLUDE_STDLIB_MALLOC -std=c89
|
41
|
-
./$(TARGET)
|
42
|
-
|
43
|
-
$(BUILD_DIR):
|
44
|
-
mkdir -p $(BUILD_DIR)
|
45
|
-
|
46
|
-
clean:
|
47
|
-
rm -f $(TARGET) $(BUILD_DIR)/*.gc*
|
48
|
-
|
49
|
-
cov: $(BUILD_DIR)
|
50
|
-
cd $(BUILD_DIR) && \
|
51
|
-
$(CC) $(DEFINES) $(foreach i, $(SRC), ../test/$(i)) $(INC_DIR) -o $(TARGET) -fprofile-arcs -ftest-coverage
|
52
|
-
rm -f $(BUILD_DIR)/*.gcda
|
53
|
-
./$(TARGET) > /dev/null ; ./$(TARGET) -v > /dev/null
|
54
|
-
cd $(BUILD_DIR) && \
|
55
|
-
gcov unity_fixture.c | head -3
|
56
|
-
grep '###' $(BUILD_DIR)/unity_fixture.c.gcov -C2 || true # Show uncovered lines
|
57
|
-
|
58
|
-
# These extended flags DO get included before any target build runs
|
59
|
-
CFLAGS += -Wbad-function-cast
|
60
|
-
CFLAGS += -Wcast-qual
|
61
|
-
CFLAGS += -Wconversion
|
62
|
-
CFLAGS += -Wformat=2
|
63
|
-
CFLAGS += -Wmissing-prototypes
|
64
|
-
CFLAGS += -Wold-style-definition
|
65
|
-
CFLAGS += -Wpointer-arith
|
66
|
-
CFLAGS += -Wshadow
|
67
|
-
CFLAGS += -Wstrict-overflow=5
|
68
|
-
CFLAGS += -Wstrict-prototypes
|
69
|
-
CFLAGS += -Wswitch-default
|
70
|
-
CFLAGS += -Wundef
|
71
|
-
CFLAGS += -Wno-error=undef # Warning only, this should not stop the build
|
72
|
-
CFLAGS += -Wunreachable-code
|
73
|
-
CFLAGS += -Wunused
|
74
|
-
CFLAGS += -fstrict-aliasing
|
@@ -1,22 +0,0 @@
|
|
1
|
-
/* Copyright (c) 2010 James Grenning and Contributed to Unity Project
|
2
|
-
* ==========================================
|
3
|
-
* Unity Project - A Test Framework for C
|
4
|
-
* Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
|
5
|
-
* [Released under MIT License. Please refer to license.txt for details]
|
6
|
-
* ========================================== */
|
7
|
-
|
8
|
-
#include "unity_fixture.h"
|
9
|
-
|
10
|
-
static void runAllTests(void)
|
11
|
-
{
|
12
|
-
RUN_TEST_GROUP(UnityFixture);
|
13
|
-
RUN_TEST_GROUP(UnityCommandOptions);
|
14
|
-
RUN_TEST_GROUP(LeakDetection);
|
15
|
-
RUN_TEST_GROUP(InternalMalloc);
|
16
|
-
}
|
17
|
-
|
18
|
-
int main(int argc, const char* argv[])
|
19
|
-
{
|
20
|
-
return UnityMain(argc, argv, runAllTests);
|
21
|
-
}
|
22
|
-
|
@@ -1,39 +0,0 @@
|
|
1
|
-
/* Copyright (c) 2010 James Grenning and Contributed to Unity Project
|
2
|
-
* ==========================================
|
3
|
-
* Unity Project - A Test Framework for C
|
4
|
-
* Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
|
5
|
-
* [Released under MIT License. Please refer to license.txt for details]
|
6
|
-
* ========================================== */
|
7
|
-
|
8
|
-
#include "unity_fixture.h"
|
9
|
-
|
10
|
-
static int data = -1;
|
11
|
-
|
12
|
-
TEST_GROUP(mygroup);
|
13
|
-
|
14
|
-
TEST_SETUP(mygroup)
|
15
|
-
{
|
16
|
-
data = 0;
|
17
|
-
}
|
18
|
-
|
19
|
-
TEST_TEAR_DOWN(mygroup)
|
20
|
-
{
|
21
|
-
data = -1;
|
22
|
-
}
|
23
|
-
|
24
|
-
TEST(mygroup, test1)
|
25
|
-
{
|
26
|
-
TEST_ASSERT_EQUAL_INT(0, data);
|
27
|
-
}
|
28
|
-
|
29
|
-
TEST(mygroup, test2)
|
30
|
-
{
|
31
|
-
TEST_ASSERT_EQUAL_INT(0, data);
|
32
|
-
data = 5;
|
33
|
-
}
|
34
|
-
|
35
|
-
TEST(mygroup, test3)
|
36
|
-
{
|
37
|
-
data = 7;
|
38
|
-
TEST_ASSERT_EQUAL_INT(7, data);
|
39
|
-
}
|
@@ -1,543 +0,0 @@
|
|
1
|
-
/* Copyright (c) 2010 James Grenning and Contributed to Unity Project
|
2
|
-
* ==========================================
|
3
|
-
* Unity Project - A Test Framework for C
|
4
|
-
* Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
|
5
|
-
* [Released under MIT License. Please refer to license.txt for details]
|
6
|
-
* ========================================== */
|
7
|
-
|
8
|
-
#include "unity_fixture.h"
|
9
|
-
#include "unity_output_Spy.h"
|
10
|
-
#include <stdlib.h>
|
11
|
-
#include <string.h>
|
12
|
-
|
13
|
-
TEST_GROUP(UnityFixture);
|
14
|
-
|
15
|
-
TEST_SETUP(UnityFixture)
|
16
|
-
{
|
17
|
-
}
|
18
|
-
|
19
|
-
TEST_TEAR_DOWN(UnityFixture)
|
20
|
-
{
|
21
|
-
}
|
22
|
-
|
23
|
-
static int* pointer1 = 0;
|
24
|
-
static int* pointer2 = (int*)2;
|
25
|
-
static int* pointer3 = (int*)3;
|
26
|
-
static int int1;
|
27
|
-
static int int2;
|
28
|
-
static int int3;
|
29
|
-
static int int4;
|
30
|
-
|
31
|
-
TEST(UnityFixture, PointerSetting)
|
32
|
-
{
|
33
|
-
TEST_ASSERT_POINTERS_EQUAL(pointer1, 0);
|
34
|
-
UT_PTR_SET(pointer1, &int1);
|
35
|
-
UT_PTR_SET(pointer2, &int2);
|
36
|
-
UT_PTR_SET(pointer3, &int3);
|
37
|
-
TEST_ASSERT_POINTERS_EQUAL(pointer1, &int1);
|
38
|
-
TEST_ASSERT_POINTERS_EQUAL(pointer2, &int2);
|
39
|
-
TEST_ASSERT_POINTERS_EQUAL(pointer3, &int3);
|
40
|
-
UT_PTR_SET(pointer1, &int4);
|
41
|
-
UnityPointer_UndoAllSets();
|
42
|
-
TEST_ASSERT_POINTERS_EQUAL(pointer1, 0);
|
43
|
-
TEST_ASSERT_POINTERS_EQUAL(pointer2, (int*)2);
|
44
|
-
TEST_ASSERT_POINTERS_EQUAL(pointer3, (int*)3);
|
45
|
-
}
|
46
|
-
|
47
|
-
TEST(UnityFixture, ForceMallocFail)
|
48
|
-
{
|
49
|
-
void* m;
|
50
|
-
void* mfails;
|
51
|
-
UnityMalloc_MakeMallocFailAfterCount(1);
|
52
|
-
m = malloc(10);
|
53
|
-
CHECK(m);
|
54
|
-
mfails = malloc(10);
|
55
|
-
TEST_ASSERT_POINTERS_EQUAL(0, mfails);
|
56
|
-
free(m);
|
57
|
-
}
|
58
|
-
|
59
|
-
TEST(UnityFixture, ReallocSmallerIsUnchanged)
|
60
|
-
{
|
61
|
-
void* m1 = malloc(10);
|
62
|
-
void* m2 = realloc(m1, 5);
|
63
|
-
TEST_ASSERT_POINTERS_EQUAL(m1, m2);
|
64
|
-
free(m2);
|
65
|
-
}
|
66
|
-
|
67
|
-
TEST(UnityFixture, ReallocSameIsUnchanged)
|
68
|
-
{
|
69
|
-
void* m1 = malloc(10);
|
70
|
-
void* m2 = realloc(m1, 10);
|
71
|
-
TEST_ASSERT_POINTERS_EQUAL(m1, m2);
|
72
|
-
free(m2);
|
73
|
-
}
|
74
|
-
|
75
|
-
TEST(UnityFixture, ReallocLargerNeeded)
|
76
|
-
{
|
77
|
-
void* m1 = malloc(10);
|
78
|
-
void* m2;
|
79
|
-
CHECK(m1);
|
80
|
-
strcpy((char*)m1, "123456789");
|
81
|
-
m2 = realloc(m1, 15);
|
82
|
-
/* CHECK(m1 != m2); //Depends on implementation */
|
83
|
-
STRCMP_EQUAL("123456789", m2);
|
84
|
-
free(m2);
|
85
|
-
}
|
86
|
-
|
87
|
-
TEST(UnityFixture, ReallocNullPointerIsLikeMalloc)
|
88
|
-
{
|
89
|
-
void* m = realloc(0, 15);
|
90
|
-
CHECK(m != 0);
|
91
|
-
free(m);
|
92
|
-
}
|
93
|
-
|
94
|
-
TEST(UnityFixture, ReallocSizeZeroFreesMemAndReturnsNullPointer)
|
95
|
-
{
|
96
|
-
void* m1 = malloc(10);
|
97
|
-
void* m2 = realloc(m1, 0);
|
98
|
-
TEST_ASSERT_POINTERS_EQUAL(0, m2);
|
99
|
-
}
|
100
|
-
|
101
|
-
TEST(UnityFixture, CallocFillsWithZero)
|
102
|
-
{
|
103
|
-
void* m = calloc(3, sizeof(char));
|
104
|
-
char* s = (char*)m;
|
105
|
-
CHECK(m);
|
106
|
-
TEST_ASSERT_BYTES_EQUAL(0, s[0]);
|
107
|
-
TEST_ASSERT_BYTES_EQUAL(0, s[1]);
|
108
|
-
TEST_ASSERT_BYTES_EQUAL(0, s[2]);
|
109
|
-
free(m);
|
110
|
-
}
|
111
|
-
|
112
|
-
static char *p1;
|
113
|
-
static char *p2;
|
114
|
-
|
115
|
-
TEST(UnityFixture, PointerSet)
|
116
|
-
{
|
117
|
-
char c1;
|
118
|
-
char c2;
|
119
|
-
char newC1;
|
120
|
-
char newC2;
|
121
|
-
p1 = &c1;
|
122
|
-
p2 = &c2;
|
123
|
-
|
124
|
-
UnityPointer_Init();
|
125
|
-
UT_PTR_SET(p1, &newC1);
|
126
|
-
UT_PTR_SET(p2, &newC2);
|
127
|
-
TEST_ASSERT_POINTERS_EQUAL(&newC1, p1);
|
128
|
-
TEST_ASSERT_POINTERS_EQUAL(&newC2, p2);
|
129
|
-
UnityPointer_UndoAllSets();
|
130
|
-
TEST_ASSERT_POINTERS_EQUAL(&c1, p1);
|
131
|
-
TEST_ASSERT_POINTERS_EQUAL(&c2, p2);
|
132
|
-
}
|
133
|
-
|
134
|
-
TEST(UnityFixture, FreeNULLSafety)
|
135
|
-
{
|
136
|
-
free(NULL);
|
137
|
-
}
|
138
|
-
|
139
|
-
TEST(UnityFixture, ConcludeTestIncrementsFailCount)
|
140
|
-
{
|
141
|
-
UNITY_UINT savedFails = Unity.TestFailures;
|
142
|
-
UNITY_UINT savedIgnores = Unity.TestIgnores;
|
143
|
-
UnityOutputCharSpy_Enable(1);
|
144
|
-
Unity.CurrentTestFailed = 1;
|
145
|
-
UnityConcludeFixtureTest(); /* Resets TestFailed for this test to pass */
|
146
|
-
Unity.CurrentTestIgnored = 1;
|
147
|
-
UnityConcludeFixtureTest(); /* Resets TestIgnored */
|
148
|
-
UnityOutputCharSpy_Enable(0);
|
149
|
-
TEST_ASSERT_EQUAL(savedFails + 1, Unity.TestFailures);
|
150
|
-
TEST_ASSERT_EQUAL(savedIgnores + 1, Unity.TestIgnores);
|
151
|
-
Unity.TestFailures = savedFails;
|
152
|
-
Unity.TestIgnores = savedIgnores;
|
153
|
-
}
|
154
|
-
|
155
|
-
/*------------------------------------------------------------ */
|
156
|
-
|
157
|
-
TEST_GROUP(UnityCommandOptions);
|
158
|
-
|
159
|
-
static int savedVerbose;
|
160
|
-
static unsigned int savedRepeat;
|
161
|
-
static const char* savedName;
|
162
|
-
static const char* savedGroup;
|
163
|
-
|
164
|
-
TEST_SETUP(UnityCommandOptions)
|
165
|
-
{
|
166
|
-
savedVerbose = UnityFixture.Verbose;
|
167
|
-
savedRepeat = UnityFixture.RepeatCount;
|
168
|
-
savedName = UnityFixture.NameFilter;
|
169
|
-
savedGroup = UnityFixture.GroupFilter;
|
170
|
-
}
|
171
|
-
|
172
|
-
TEST_TEAR_DOWN(UnityCommandOptions)
|
173
|
-
{
|
174
|
-
UnityFixture.Verbose = savedVerbose;
|
175
|
-
UnityFixture.RepeatCount= savedRepeat;
|
176
|
-
UnityFixture.NameFilter = savedName;
|
177
|
-
UnityFixture.GroupFilter = savedGroup;
|
178
|
-
}
|
179
|
-
|
180
|
-
|
181
|
-
static const char* noOptions[] = {
|
182
|
-
"testrunner.exe"
|
183
|
-
};
|
184
|
-
|
185
|
-
TEST(UnityCommandOptions, DefaultOptions)
|
186
|
-
{
|
187
|
-
UnityGetCommandLineOptions(1, noOptions);
|
188
|
-
TEST_ASSERT_EQUAL(0, UnityFixture.Verbose);
|
189
|
-
TEST_ASSERT_POINTERS_EQUAL(0, UnityFixture.GroupFilter);
|
190
|
-
TEST_ASSERT_POINTERS_EQUAL(0, UnityFixture.NameFilter);
|
191
|
-
TEST_ASSERT_EQUAL(1, UnityFixture.RepeatCount);
|
192
|
-
}
|
193
|
-
|
194
|
-
static const char* verbose[] = {
|
195
|
-
"testrunner.exe",
|
196
|
-
"-v"
|
197
|
-
};
|
198
|
-
|
199
|
-
TEST(UnityCommandOptions, OptionVerbose)
|
200
|
-
{
|
201
|
-
TEST_ASSERT_EQUAL(0, UnityGetCommandLineOptions(2, verbose));
|
202
|
-
TEST_ASSERT_EQUAL(1, UnityFixture.Verbose);
|
203
|
-
}
|
204
|
-
|
205
|
-
static const char* group[] = {
|
206
|
-
"testrunner.exe",
|
207
|
-
"-g", "groupname"
|
208
|
-
};
|
209
|
-
|
210
|
-
TEST(UnityCommandOptions, OptionSelectTestByGroup)
|
211
|
-
{
|
212
|
-
TEST_ASSERT_EQUAL(0, UnityGetCommandLineOptions(3, group));
|
213
|
-
STRCMP_EQUAL("groupname", UnityFixture.GroupFilter);
|
214
|
-
}
|
215
|
-
|
216
|
-
static const char* name[] = {
|
217
|
-
"testrunner.exe",
|
218
|
-
"-n", "testname"
|
219
|
-
};
|
220
|
-
|
221
|
-
TEST(UnityCommandOptions, OptionSelectTestByName)
|
222
|
-
{
|
223
|
-
TEST_ASSERT_EQUAL(0, UnityGetCommandLineOptions(3, name));
|
224
|
-
STRCMP_EQUAL("testname", UnityFixture.NameFilter);
|
225
|
-
}
|
226
|
-
|
227
|
-
static const char* repeat[] = {
|
228
|
-
"testrunner.exe",
|
229
|
-
"-r", "99"
|
230
|
-
};
|
231
|
-
|
232
|
-
TEST(UnityCommandOptions, OptionSelectRepeatTestsDefaultCount)
|
233
|
-
{
|
234
|
-
TEST_ASSERT_EQUAL(0, UnityGetCommandLineOptions(2, repeat));
|
235
|
-
TEST_ASSERT_EQUAL(2, UnityFixture.RepeatCount);
|
236
|
-
}
|
237
|
-
|
238
|
-
TEST(UnityCommandOptions, OptionSelectRepeatTestsSpecificCount)
|
239
|
-
{
|
240
|
-
TEST_ASSERT_EQUAL(0, UnityGetCommandLineOptions(3, repeat));
|
241
|
-
TEST_ASSERT_EQUAL(99, UnityFixture.RepeatCount);
|
242
|
-
}
|
243
|
-
|
244
|
-
static const char* multiple[] = {
|
245
|
-
"testrunner.exe",
|
246
|
-
"-v",
|
247
|
-
"-g", "groupname",
|
248
|
-
"-n", "testname",
|
249
|
-
"-r", "98"
|
250
|
-
};
|
251
|
-
|
252
|
-
TEST(UnityCommandOptions, MultipleOptions)
|
253
|
-
{
|
254
|
-
TEST_ASSERT_EQUAL(0, UnityGetCommandLineOptions(8, multiple));
|
255
|
-
TEST_ASSERT_EQUAL(1, UnityFixture.Verbose);
|
256
|
-
STRCMP_EQUAL("groupname", UnityFixture.GroupFilter);
|
257
|
-
STRCMP_EQUAL("testname", UnityFixture.NameFilter);
|
258
|
-
TEST_ASSERT_EQUAL(98, UnityFixture.RepeatCount);
|
259
|
-
}
|
260
|
-
|
261
|
-
static const char* dashRNotLast[] = {
|
262
|
-
"testrunner.exe",
|
263
|
-
"-v",
|
264
|
-
"-g", "gggg",
|
265
|
-
"-r",
|
266
|
-
"-n", "tttt",
|
267
|
-
};
|
268
|
-
|
269
|
-
TEST(UnityCommandOptions, MultipleOptionsDashRNotLastAndNoValueSpecified)
|
270
|
-
{
|
271
|
-
TEST_ASSERT_EQUAL(0, UnityGetCommandLineOptions(7, dashRNotLast));
|
272
|
-
TEST_ASSERT_EQUAL(1, UnityFixture.Verbose);
|
273
|
-
STRCMP_EQUAL("gggg", UnityFixture.GroupFilter);
|
274
|
-
STRCMP_EQUAL("tttt", UnityFixture.NameFilter);
|
275
|
-
TEST_ASSERT_EQUAL(2, UnityFixture.RepeatCount);
|
276
|
-
}
|
277
|
-
|
278
|
-
static const char* unknownCommand[] = {
|
279
|
-
"testrunner.exe",
|
280
|
-
"-v",
|
281
|
-
"-g", "groupname",
|
282
|
-
"-n", "testname",
|
283
|
-
"-r", "98",
|
284
|
-
"-z"
|
285
|
-
};
|
286
|
-
TEST(UnityCommandOptions, UnknownCommandIsIgnored)
|
287
|
-
{
|
288
|
-
TEST_ASSERT_EQUAL(0, UnityGetCommandLineOptions(9, unknownCommand));
|
289
|
-
TEST_ASSERT_EQUAL(1, UnityFixture.Verbose);
|
290
|
-
STRCMP_EQUAL("groupname", UnityFixture.GroupFilter);
|
291
|
-
STRCMP_EQUAL("testname", UnityFixture.NameFilter);
|
292
|
-
TEST_ASSERT_EQUAL(98, UnityFixture.RepeatCount);
|
293
|
-
}
|
294
|
-
|
295
|
-
TEST(UnityCommandOptions, GroupOrNameFilterWithoutStringFails)
|
296
|
-
{
|
297
|
-
TEST_ASSERT_EQUAL(1, UnityGetCommandLineOptions(3, unknownCommand));
|
298
|
-
TEST_ASSERT_EQUAL(1, UnityGetCommandLineOptions(5, unknownCommand));
|
299
|
-
TEST_ASSERT_EQUAL(1, UnityMain(3, unknownCommand, NULL));
|
300
|
-
}
|
301
|
-
|
302
|
-
TEST(UnityCommandOptions, GroupFilterReallyFilters)
|
303
|
-
{
|
304
|
-
UNITY_UINT saved = Unity.NumberOfTests;
|
305
|
-
TEST_ASSERT_EQUAL(0, UnityGetCommandLineOptions(4, unknownCommand));
|
306
|
-
UnityIgnoreTest(NULL, "non-matching", NULL);
|
307
|
-
TEST_ASSERT_EQUAL(saved, Unity.NumberOfTests);
|
308
|
-
}
|
309
|
-
|
310
|
-
IGNORE_TEST(UnityCommandOptions, TestShouldBeIgnored)
|
311
|
-
{
|
312
|
-
TEST_FAIL_MESSAGE("This test should not run!");
|
313
|
-
}
|
314
|
-
|
315
|
-
/*------------------------------------------------------------ */
|
316
|
-
|
317
|
-
TEST_GROUP(LeakDetection);
|
318
|
-
|
319
|
-
TEST_SETUP(LeakDetection)
|
320
|
-
{
|
321
|
-
#ifdef UNITY_EXCLUDE_STDLIB_MALLOC
|
322
|
-
UnityOutputCharSpy_Create(200);
|
323
|
-
#else
|
324
|
-
UnityOutputCharSpy_Create(1000);
|
325
|
-
#endif
|
326
|
-
}
|
327
|
-
|
328
|
-
TEST_TEAR_DOWN(LeakDetection)
|
329
|
-
{
|
330
|
-
UnityOutputCharSpy_Destroy();
|
331
|
-
}
|
332
|
-
|
333
|
-
#define EXPECT_ABORT_BEGIN \
|
334
|
-
{ \
|
335
|
-
jmp_buf TestAbortFrame; \
|
336
|
-
memcpy(TestAbortFrame, Unity.AbortFrame, sizeof(jmp_buf)); \
|
337
|
-
if (TEST_PROTECT()) \
|
338
|
-
{
|
339
|
-
|
340
|
-
#define EXPECT_ABORT_END \
|
341
|
-
} \
|
342
|
-
memcpy(Unity.AbortFrame, TestAbortFrame, sizeof(jmp_buf)); \
|
343
|
-
}
|
344
|
-
|
345
|
-
/* This tricky set of defines lets us see if we are using the Spy, returns 1 if true */
|
346
|
-
#ifdef __STDC_VERSION__
|
347
|
-
|
348
|
-
#if __STDC_VERSION__ >= 199901L
|
349
|
-
#define USING_SPY_AS(a) EXPAND_AND_USE_2ND(ASSIGN_VALUE(a), 0)
|
350
|
-
#define ASSIGN_VALUE(a) VAL_##a
|
351
|
-
#define VAL_UnityOutputCharSpy_OutputChar 0, 1
|
352
|
-
#define EXPAND_AND_USE_2ND(a, b) SECOND_PARAM(a, b, throwaway)
|
353
|
-
#define SECOND_PARAM(a, b, ...) b
|
354
|
-
#if USING_SPY_AS(UNITY_OUTPUT_CHAR)
|
355
|
-
#define USING_OUTPUT_SPY /* UNITY_OUTPUT_CHAR = UnityOutputCharSpy_OutputChar */
|
356
|
-
#endif
|
357
|
-
#endif /* >= 199901 */
|
358
|
-
|
359
|
-
#else /* __STDC_VERSION__ else */
|
360
|
-
#define UnityOutputCharSpy_OutputChar 42
|
361
|
-
#if UNITY_OUTPUT_CHAR == UnityOutputCharSpy_OutputChar /* Works if no -Wundef -Werror */
|
362
|
-
#define USING_OUTPUT_SPY
|
363
|
-
#endif
|
364
|
-
#undef UnityOutputCharSpy_OutputChar
|
365
|
-
#endif /* __STDC_VERSION__ */
|
366
|
-
|
367
|
-
TEST(LeakDetection, DetectsLeak)
|
368
|
-
{
|
369
|
-
#ifndef USING_OUTPUT_SPY
|
370
|
-
TEST_IGNORE_MESSAGE("Build with '-D UNITY_OUTPUT_CHAR=UnityOutputCharSpy_OutputChar' to enable tests");
|
371
|
-
#else
|
372
|
-
void* m = malloc(10);
|
373
|
-
TEST_ASSERT_NOT_NULL(m);
|
374
|
-
UnityOutputCharSpy_Enable(1);
|
375
|
-
EXPECT_ABORT_BEGIN
|
376
|
-
UnityMalloc_EndTest();
|
377
|
-
EXPECT_ABORT_END
|
378
|
-
UnityOutputCharSpy_Enable(0);
|
379
|
-
Unity.CurrentTestFailed = 0;
|
380
|
-
CHECK(strstr(UnityOutputCharSpy_Get(), "This test leaks!"));
|
381
|
-
free(m);
|
382
|
-
#endif
|
383
|
-
}
|
384
|
-
|
385
|
-
TEST(LeakDetection, BufferOverrunFoundDuringFree)
|
386
|
-
{
|
387
|
-
#ifndef USING_OUTPUT_SPY
|
388
|
-
TEST_IGNORE();
|
389
|
-
#else
|
390
|
-
void* m = malloc(10);
|
391
|
-
char* s = (char*)m;
|
392
|
-
TEST_ASSERT_NOT_NULL(m);
|
393
|
-
s[10] = (char)0xFF;
|
394
|
-
UnityOutputCharSpy_Enable(1);
|
395
|
-
EXPECT_ABORT_BEGIN
|
396
|
-
free(m);
|
397
|
-
EXPECT_ABORT_END
|
398
|
-
UnityOutputCharSpy_Enable(0);
|
399
|
-
Unity.CurrentTestFailed = 0;
|
400
|
-
CHECK(strstr(UnityOutputCharSpy_Get(), "Buffer overrun detected during free()"));
|
401
|
-
#endif
|
402
|
-
}
|
403
|
-
|
404
|
-
TEST(LeakDetection, BufferOverrunFoundDuringRealloc)
|
405
|
-
{
|
406
|
-
#ifndef USING_OUTPUT_SPY
|
407
|
-
TEST_IGNORE();
|
408
|
-
#else
|
409
|
-
void* m = malloc(10);
|
410
|
-
char* s = (char*)m;
|
411
|
-
TEST_ASSERT_NOT_NULL(m);
|
412
|
-
s[10] = (char)0xFF;
|
413
|
-
UnityOutputCharSpy_Enable(1);
|
414
|
-
EXPECT_ABORT_BEGIN
|
415
|
-
m = realloc(m, 100);
|
416
|
-
EXPECT_ABORT_END
|
417
|
-
UnityOutputCharSpy_Enable(0);
|
418
|
-
Unity.CurrentTestFailed = 0;
|
419
|
-
CHECK(strstr(UnityOutputCharSpy_Get(), "Buffer overrun detected during realloc()"));
|
420
|
-
#endif
|
421
|
-
}
|
422
|
-
|
423
|
-
TEST(LeakDetection, BufferGuardWriteFoundDuringFree)
|
424
|
-
{
|
425
|
-
#ifndef USING_OUTPUT_SPY
|
426
|
-
TEST_IGNORE();
|
427
|
-
#else
|
428
|
-
void* m = malloc(10);
|
429
|
-
char* s = (char*)m;
|
430
|
-
TEST_ASSERT_NOT_NULL(m);
|
431
|
-
s[-1] = (char)0x00; /* Will not detect 0 */
|
432
|
-
s[-2] = (char)0x01;
|
433
|
-
UnityOutputCharSpy_Enable(1);
|
434
|
-
EXPECT_ABORT_BEGIN
|
435
|
-
free(m);
|
436
|
-
EXPECT_ABORT_END
|
437
|
-
UnityOutputCharSpy_Enable(0);
|
438
|
-
Unity.CurrentTestFailed = 0;
|
439
|
-
CHECK(strstr(UnityOutputCharSpy_Get(), "Buffer overrun detected during free()"));
|
440
|
-
#endif
|
441
|
-
}
|
442
|
-
|
443
|
-
TEST(LeakDetection, BufferGuardWriteFoundDuringRealloc)
|
444
|
-
{
|
445
|
-
#ifndef USING_OUTPUT_SPY
|
446
|
-
TEST_IGNORE();
|
447
|
-
#else
|
448
|
-
void* m = malloc(10);
|
449
|
-
char* s = (char*)m;
|
450
|
-
TEST_ASSERT_NOT_NULL(m);
|
451
|
-
s[-1] = (char)0x0A;
|
452
|
-
UnityOutputCharSpy_Enable(1);
|
453
|
-
EXPECT_ABORT_BEGIN
|
454
|
-
m = realloc(m, 100);
|
455
|
-
EXPECT_ABORT_END
|
456
|
-
UnityOutputCharSpy_Enable(0);
|
457
|
-
Unity.CurrentTestFailed = 0;
|
458
|
-
CHECK(strstr(UnityOutputCharSpy_Get(), "Buffer overrun detected during realloc()"));
|
459
|
-
#endif
|
460
|
-
}
|
461
|
-
|
462
|
-
TEST(LeakDetection, PointerSettingMax)
|
463
|
-
{
|
464
|
-
#ifndef USING_OUTPUT_SPY
|
465
|
-
TEST_IGNORE();
|
466
|
-
#else
|
467
|
-
int i;
|
468
|
-
for (i = 0; i < UNITY_MAX_POINTERS; i++) UT_PTR_SET(pointer1, &int1);
|
469
|
-
UnityOutputCharSpy_Enable(1);
|
470
|
-
EXPECT_ABORT_BEGIN
|
471
|
-
UT_PTR_SET(pointer1, &int1);
|
472
|
-
EXPECT_ABORT_END
|
473
|
-
UnityOutputCharSpy_Enable(0);
|
474
|
-
Unity.CurrentTestFailed = 0;
|
475
|
-
CHECK(strstr(UnityOutputCharSpy_Get(), "Too many pointers set"));
|
476
|
-
#endif
|
477
|
-
}
|
478
|
-
|
479
|
-
/*------------------------------------------------------------ */
|
480
|
-
|
481
|
-
TEST_GROUP(InternalMalloc);
|
482
|
-
#define TEST_ASSERT_MEMORY_ALL_FREE_LIFO_ORDER(first_mem_ptr, ptr) \
|
483
|
-
ptr = malloc(10); free(ptr); \
|
484
|
-
TEST_ASSERT_EQUAL_PTR_MESSAGE(first_mem_ptr, ptr, "Memory was stranded, free in LIFO order");
|
485
|
-
|
486
|
-
|
487
|
-
TEST_SETUP(InternalMalloc) { }
|
488
|
-
TEST_TEAR_DOWN(InternalMalloc) { }
|
489
|
-
|
490
|
-
TEST(InternalMalloc, MallocPastBufferFails)
|
491
|
-
{
|
492
|
-
#ifdef UNITY_EXCLUDE_STDLIB_MALLOC
|
493
|
-
void* m = malloc(UNITY_INTERNAL_HEAP_SIZE_BYTES/2 + 1);
|
494
|
-
void* n = malloc(UNITY_INTERNAL_HEAP_SIZE_BYTES/2);
|
495
|
-
free(m);
|
496
|
-
TEST_ASSERT_NOT_NULL(m);
|
497
|
-
TEST_ASSERT_NULL(n);
|
498
|
-
TEST_ASSERT_MEMORY_ALL_FREE_LIFO_ORDER(m, n);
|
499
|
-
#endif
|
500
|
-
}
|
501
|
-
|
502
|
-
TEST(InternalMalloc, CallocPastBufferFails)
|
503
|
-
{
|
504
|
-
#ifdef UNITY_EXCLUDE_STDLIB_MALLOC
|
505
|
-
void* m = calloc(1, UNITY_INTERNAL_HEAP_SIZE_BYTES/2 + 1);
|
506
|
-
void* n = calloc(1, UNITY_INTERNAL_HEAP_SIZE_BYTES/2);
|
507
|
-
free(m);
|
508
|
-
TEST_ASSERT_NOT_NULL(m);
|
509
|
-
TEST_ASSERT_NULL(n);
|
510
|
-
TEST_ASSERT_MEMORY_ALL_FREE_LIFO_ORDER(m, n);
|
511
|
-
#endif
|
512
|
-
}
|
513
|
-
|
514
|
-
TEST(InternalMalloc, MallocThenReallocGrowsMemoryInPlace)
|
515
|
-
{
|
516
|
-
#ifdef UNITY_EXCLUDE_STDLIB_MALLOC
|
517
|
-
void* m = malloc(UNITY_INTERNAL_HEAP_SIZE_BYTES/2 + 1);
|
518
|
-
void* n = realloc(m, UNITY_INTERNAL_HEAP_SIZE_BYTES/2 + 9);
|
519
|
-
free(n);
|
520
|
-
TEST_ASSERT_NOT_NULL(m);
|
521
|
-
TEST_ASSERT_EQUAL(m, n);
|
522
|
-
TEST_ASSERT_MEMORY_ALL_FREE_LIFO_ORDER(m, n);
|
523
|
-
#endif
|
524
|
-
}
|
525
|
-
|
526
|
-
TEST(InternalMalloc, ReallocFailDoesNotFreeMem)
|
527
|
-
{
|
528
|
-
#ifdef UNITY_EXCLUDE_STDLIB_MALLOC
|
529
|
-
void* m = malloc(UNITY_INTERNAL_HEAP_SIZE_BYTES/2);
|
530
|
-
void* n1 = malloc(10);
|
531
|
-
void* out_of_mem = realloc(n1, UNITY_INTERNAL_HEAP_SIZE_BYTES/2 + 1);
|
532
|
-
void* n2 = malloc(10);
|
533
|
-
|
534
|
-
free(n2);
|
535
|
-
if (out_of_mem == NULL) free(n1);
|
536
|
-
free(m);
|
537
|
-
|
538
|
-
TEST_ASSERT_NOT_NULL(m); /* Got a real memory location */
|
539
|
-
TEST_ASSERT_NULL(out_of_mem); /* The realloc should have failed */
|
540
|
-
TEST_ASSERT_NOT_EQUAL(n2, n1); /* If n1 != n2 then realloc did not free n1 */
|
541
|
-
TEST_ASSERT_MEMORY_ALL_FREE_LIFO_ORDER(m, n2);
|
542
|
-
#endif
|
543
|
-
}
|