ceedling 0.18.0 → 0.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +17 -13
- data/ceedling-0.18.0.gem +0 -0
- data/docs/CeedlingPacket.md +7 -5
- data/lib/ceedling/configurator_builder.rb +10 -21
- data/lib/ceedling/configurator_setup.rb +16 -17
- data/lib/ceedling/constants.rb +4 -3
- data/lib/ceedling/defaults.rb +9 -4
- data/lib/ceedling/dependinator.rb +0 -1
- data/lib/ceedling/file_path_utils.rb +22 -26
- data/lib/ceedling/flaginator.rb +5 -5
- data/lib/ceedling/generator.rb +8 -7
- data/lib/ceedling/preprocessinator_file_handler.rb +6 -6
- data/lib/ceedling/preprocessinator_includes_handler.rb +1 -1
- data/lib/ceedling/rules_release.rake +5 -3
- data/lib/ceedling/rules_tests.rake +2 -1
- data/lib/ceedling/tasks_base.rake +1 -1
- data/lib/ceedling/tasks_vendor.rake +9 -10
- data/lib/ceedling/tool_executor.rb +23 -22
- data/lib/ceedling/version.rb +3 -3
- data/plugins/module_generator/lib/module_generator.rb +3 -3
- data/plugins/xml_tests_report/xml_tests_report.rb +1 -1
- data/spec/preprocessinator_includes_handler_spec.rb +1 -1
- data/spec/spec_system_helper.rb +192 -192
- data/vendor/c_exception/vendor/unity/Gemfile +4 -0
- data/vendor/c_exception/vendor/unity/Gemfile.lock +12 -0
- data/vendor/c_exception/vendor/unity/auto/colour_prompt.rb +115 -0
- data/vendor/c_exception/vendor/unity/auto/colour_reporter.rb +39 -0
- data/vendor/c_exception/vendor/unity/auto/generate_config.yml +36 -0
- data/vendor/c_exception/vendor/unity/auto/generate_module.rb +202 -0
- data/vendor/c_exception/vendor/unity/auto/generate_test_runner.rb +320 -0
- data/vendor/c_exception/vendor/unity/auto/parseOutput.rb +189 -0
- data/vendor/c_exception/vendor/unity/auto/test_file_filter.rb +23 -0
- data/vendor/c_exception/vendor/unity/auto/unity_test_summary.rb +139 -0
- data/vendor/c_exception/vendor/unity/docs/Unity Summary.odt +0 -0
- data/vendor/c_exception/vendor/unity/docs/Unity Summary.pdf +0 -0
- data/vendor/c_exception/vendor/unity/docs/Unity Summary.txt +216 -0
- data/vendor/c_exception/vendor/unity/docs/license.txt +31 -0
- data/vendor/c_exception/vendor/unity/examples/example_1/makefile +41 -0
- data/vendor/c_exception/vendor/unity/examples/example_1/readme.txt +5 -0
- data/vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode.c +24 -0
- data/vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode.h +3 -0
- data/vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode2.c +9 -0
- data/vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode2.h +2 -0
- data/vendor/c_exception/vendor/unity/examples/example_1/test/TestProductionCode.c +62 -0
- data/vendor/c_exception/vendor/unity/examples/example_1/test/TestProductionCode2.c +31 -0
- data/vendor/{unity/examples/example_3/test/no_ruby → c_exception/vendor/unity/examples/example_1/test/test_runners}/TestProductionCode2_Runner.c +16 -3
- data/vendor/{unity/examples/example_3/test/no_ruby → c_exception/vendor/unity/examples/example_1/test/test_runners}/TestProductionCode_Runner.c +16 -3
- data/vendor/c_exception/vendor/unity/examples/example_2/makefile +45 -0
- data/vendor/c_exception/vendor/unity/examples/example_2/readme.txt +5 -0
- data/vendor/c_exception/vendor/unity/examples/example_2/src/ProductionCode.c +24 -0
- data/vendor/c_exception/vendor/unity/examples/example_2/src/ProductionCode.h +3 -0
- data/vendor/c_exception/vendor/unity/examples/example_2/src/ProductionCode2.c +9 -0
- data/vendor/c_exception/vendor/unity/examples/example_2/src/ProductionCode2.h +2 -0
- data/vendor/c_exception/vendor/unity/examples/example_2/test/TestProductionCode.c +64 -0
- data/vendor/c_exception/vendor/unity/examples/example_2/test/TestProductionCode2.c +33 -0
- data/vendor/c_exception/vendor/unity/examples/example_2/test/test_runners/TestProductionCode2_Runner.c +9 -0
- data/vendor/c_exception/vendor/unity/examples/example_2/test/test_runners/TestProductionCode_Runner.c +11 -0
- data/vendor/c_exception/vendor/unity/examples/example_2/test/test_runners/all_tests.c +12 -0
- data/vendor/c_exception/vendor/unity/examples/example_3/helper/UnityHelper.c +10 -0
- data/vendor/c_exception/vendor/unity/examples/example_3/helper/UnityHelper.h +12 -0
- data/vendor/c_exception/vendor/unity/examples/example_3/makefile +41 -0
- data/vendor/c_exception/vendor/unity/examples/example_3/rakefile.rb +44 -0
- data/vendor/c_exception/vendor/unity/examples/example_3/rakefile_helper.rb +256 -0
- data/vendor/c_exception/vendor/unity/examples/example_3/readme.txt +19 -0
- data/vendor/c_exception/vendor/unity/examples/example_3/src/ProductionCode.c +24 -0
- data/vendor/c_exception/vendor/unity/examples/example_3/src/ProductionCode.h +3 -0
- data/vendor/c_exception/vendor/unity/examples/example_3/src/ProductionCode2.c +9 -0
- data/vendor/c_exception/vendor/unity/examples/example_3/src/ProductionCode2.h +2 -0
- data/vendor/c_exception/vendor/unity/examples/example_3/target_gcc_32.yml +46 -0
- data/vendor/c_exception/vendor/unity/examples/example_3/test/TestProductionCode.c +62 -0
- data/vendor/c_exception/vendor/unity/examples/example_3/test/TestProductionCode2.c +31 -0
- data/vendor/c_exception/vendor/unity/examples/example_3/test/no_ruby/TestProductionCode2_Runner.c +46 -0
- data/vendor/c_exception/vendor/unity/examples/example_3/test/no_ruby/TestProductionCode_Runner.c +50 -0
- data/vendor/c_exception/vendor/unity/extras/eclipse/error_parsers.txt +26 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/rakefile.rb +37 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/rakefile_helper.rb +179 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/readme.txt +9 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.c +387 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.h +82 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_internals.h +44 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +16 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/test/main/AllTests.c +21 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/test/testunity_fixture.c +39 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_Test.c +341 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +41 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.c +56 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.h +17 -0
- data/vendor/c_exception/vendor/unity/makefile +37 -0
- data/vendor/c_exception/vendor/unity/rakefile.rb +61 -0
- data/vendor/c_exception/vendor/unity/rakefile_helper.rb +249 -0
- data/vendor/c_exception/vendor/unity/release/build.info +2 -0
- data/vendor/c_exception/vendor/unity/release/version.info +2 -0
- data/vendor/c_exception/vendor/unity/src/unity.c +1145 -0
- data/vendor/c_exception/vendor/unity/src/unity.h +307 -0
- data/vendor/c_exception/vendor/unity/src/unity_internals.h +620 -0
- data/vendor/c_exception/vendor/unity/targets/clang_strict.yml +83 -0
- data/vendor/c_exception/vendor/unity/targets/gcc_32.yml +44 -0
- data/vendor/c_exception/vendor/unity/targets/gcc_64.yml +45 -0
- data/vendor/c_exception/vendor/unity/targets/hitech_picc18.yml +101 -0
- data/vendor/c_exception/vendor/unity/targets/iar_arm_v4.yml +89 -0
- data/vendor/c_exception/vendor/unity/targets/iar_arm_v5.yml +79 -0
- data/vendor/c_exception/vendor/unity/targets/iar_arm_v5_3.yml +79 -0
- data/vendor/c_exception/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +93 -0
- data/vendor/c_exception/vendor/unity/targets/iar_cortexm3_v5.yml +83 -0
- data/vendor/c_exception/vendor/unity/targets/iar_msp430.yml +94 -0
- data/vendor/c_exception/vendor/unity/targets/iar_sh2a_v6.yml +85 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_cmd.c +57 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_def.c +53 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_cmd.c +79 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_def.c +75 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new1.c +88 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new2.c +88 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_param.c +76 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run1.c +88 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run2.c +88 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_yaml.c +89 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_new1.c +63 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_new2.c +66 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_param.c +54 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_run1.c +63 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_run2.c +66 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_yaml.c +67 -0
- data/vendor/c_exception/vendor/unity/test/test_generate_test_runner.rb +88 -0
- data/vendor/c_exception/vendor/unity/test/testdata/mocksample.c +51 -0
- data/vendor/c_exception/vendor/unity/test/testdata/sample.yml +9 -0
- data/vendor/c_exception/vendor/unity/test/testdata/testsample.c +51 -0
- data/vendor/c_exception/vendor/unity/test/testparameterized.c +101 -0
- data/vendor/c_exception/vendor/unity/test/testunity.c +3447 -0
- data/vendor/cmock/README.md +1 -1
- data/vendor/cmock/Rakefile +106 -104
- data/vendor/cmock/config/production_environment.rb +14 -14
- data/vendor/cmock/config/test_environment.rb +16 -16
- data/vendor/cmock/docs/CMock_Summary.md +9 -0
- data/vendor/cmock/docs/license.txt +2 -2
- data/vendor/cmock/examples/make_example/Makefile +30 -0
- data/vendor/cmock/examples/make_example/src/foo.c +5 -0
- data/vendor/cmock/examples/make_example/src/foo.h +5 -0
- data/vendor/cmock/examples/make_example/src/main.c +15 -0
- data/vendor/cmock/examples/make_example/test/test_foo.c +17 -0
- data/vendor/cmock/examples/make_example/test/test_main.c +15 -0
- data/vendor/cmock/examples/{gcc.yml → temp_sensor/gcc.yml} +43 -43
- data/vendor/cmock/examples/{iar_v4.yml → temp_sensor/iar_v4.yml} +91 -91
- data/vendor/cmock/examples/{iar_v5.yml → temp_sensor/iar_v5.yml} +80 -80
- data/vendor/cmock/examples/{rakefile.rb → temp_sensor/rakefile.rb} +32 -32
- data/vendor/cmock/examples/{rakefile_helper.rb → temp_sensor/rakefile_helper.rb} +270 -270
- data/vendor/cmock/examples/{src → temp_sensor/src}/AT91SAM7X256.h +2556 -2556
- data/vendor/cmock/examples/{src → temp_sensor/src}/AdcConductor.c +42 -42
- data/vendor/cmock/examples/{src → temp_sensor/src}/AdcConductor.h +11 -11
- data/vendor/cmock/examples/{src → temp_sensor/src}/AdcHardware.c +27 -27
- data/vendor/cmock/examples/{src → temp_sensor/src}/AdcHardware.h +9 -9
- data/vendor/cmock/examples/{src → temp_sensor/src}/AdcHardwareConfigurator.c +18 -18
- data/vendor/cmock/examples/{src → temp_sensor/src}/AdcHardwareConfigurator.h +10 -10
- data/vendor/cmock/examples/{src → temp_sensor/src}/AdcModel.c +33 -33
- data/vendor/cmock/examples/{src → temp_sensor/src}/AdcModel.h +13 -13
- data/vendor/cmock/examples/{src → temp_sensor/src}/AdcTemperatureSensor.c +51 -51
- data/vendor/cmock/examples/{src → temp_sensor/src}/AdcTemperatureSensor.h +10 -10
- data/vendor/cmock/examples/{src → temp_sensor/src}/Executor.c +25 -25
- data/vendor/cmock/examples/{src → temp_sensor/src}/Executor.h +9 -9
- data/vendor/cmock/examples/{src → temp_sensor/src}/IntrinsicsWrapper.c +18 -18
- data/vendor/cmock/examples/{src → temp_sensor/src}/IntrinsicsWrapper.h +7 -7
- data/vendor/cmock/examples/{src → temp_sensor/src}/Main.c +46 -46
- data/vendor/cmock/examples/{src → temp_sensor/src}/Main.h +7 -7
- data/vendor/cmock/examples/{src → temp_sensor/src}/Model.c +10 -10
- data/vendor/cmock/examples/{src → temp_sensor/src}/Model.h +8 -8
- data/vendor/cmock/examples/{src → temp_sensor/src}/ModelConfig.h +7 -7
- data/vendor/cmock/examples/{src → temp_sensor/src}/TaskScheduler.c +72 -72
- data/vendor/cmock/examples/{src → temp_sensor/src}/TaskScheduler.h +11 -11
- data/vendor/cmock/examples/{src → temp_sensor/src}/TemperatureCalculator.c +27 -27
- data/vendor/cmock/examples/{src → temp_sensor/src}/TemperatureCalculator.h +6 -6
- data/vendor/cmock/examples/{src → temp_sensor/src}/TemperatureFilter.c +39 -39
- data/vendor/cmock/examples/{src → temp_sensor/src}/TemperatureFilter.h +10 -10
- data/vendor/cmock/examples/{src → temp_sensor/src}/TimerConductor.c +15 -15
- data/vendor/cmock/examples/{src → temp_sensor/src}/TimerConductor.h +9 -9
- data/vendor/cmock/examples/{src → temp_sensor/src}/TimerConfigurator.c +51 -51
- data/vendor/cmock/examples/{src → temp_sensor/src}/TimerConfigurator.h +15 -15
- data/vendor/cmock/examples/{src → temp_sensor/src}/TimerHardware.c +15 -15
- data/vendor/cmock/examples/{src → temp_sensor/src}/TimerHardware.h +8 -8
- data/vendor/cmock/examples/{src → temp_sensor/src}/TimerInterruptConfigurator.c +55 -55
- data/vendor/cmock/examples/{src → temp_sensor/src}/TimerInterruptConfigurator.h +13 -13
- data/vendor/cmock/examples/{src → temp_sensor/src}/TimerInterruptHandler.c +25 -25
- data/vendor/cmock/examples/{src → temp_sensor/src}/TimerInterruptHandler.h +10 -10
- data/vendor/cmock/examples/{src → temp_sensor/src}/TimerModel.c +9 -9
- data/vendor/cmock/examples/{src → temp_sensor/src}/TimerModel.h +8 -8
- data/vendor/cmock/examples/{src → temp_sensor/src}/Types.h +103 -103
- data/vendor/cmock/examples/{src → temp_sensor/src}/UsartBaudRateRegisterCalculator.c +18 -18
- data/vendor/cmock/examples/{src → temp_sensor/src}/UsartBaudRateRegisterCalculator.h +6 -6
- data/vendor/cmock/examples/{src → temp_sensor/src}/UsartConductor.c +21 -21
- data/vendor/cmock/examples/{src → temp_sensor/src}/UsartConductor.h +7 -7
- data/vendor/cmock/examples/{src → temp_sensor/src}/UsartConfigurator.c +39 -39
- data/vendor/cmock/examples/{src → temp_sensor/src}/UsartConfigurator.h +13 -13
- data/vendor/cmock/examples/{src → temp_sensor/src}/UsartHardware.c +22 -22
- data/vendor/cmock/examples/{src → temp_sensor/src}/UsartHardware.h +9 -9
- data/vendor/cmock/examples/{src → temp_sensor/src}/UsartModel.c +34 -34
- data/vendor/cmock/examples/{src → temp_sensor/src}/UsartModel.h +10 -10
- data/vendor/cmock/examples/{src → temp_sensor/src}/UsartPutChar.c +16 -16
- data/vendor/cmock/examples/{src → temp_sensor/src}/UsartPutChar.h +8 -8
- data/vendor/cmock/examples/{src → temp_sensor/src}/UsartTransmitBufferStatus.c +7 -7
- data/vendor/cmock/examples/{src → temp_sensor/src}/UsartTransmitBufferStatus.h +8 -8
- data/vendor/cmock/examples/{test → temp_sensor/test}/TestAdcConductor.c +121 -121
- data/vendor/cmock/examples/{test → temp_sensor/test}/TestAdcHardware.c +44 -44
- data/vendor/cmock/examples/{test → temp_sensor/test}/TestAdcHardwareConfigurator.c +43 -43
- data/vendor/cmock/examples/{test → temp_sensor/test}/TestAdcModel.c +33 -33
- data/vendor/cmock/examples/{test → temp_sensor/test}/TestAdcTemperatureSensor.c +47 -47
- data/vendor/cmock/examples/{test → temp_sensor/test}/TestExecutor.c +36 -36
- data/vendor/cmock/examples/{test → temp_sensor/test}/TestMain.c +24 -24
- data/vendor/cmock/examples/{test → temp_sensor/test}/TestModel.c +20 -20
- data/vendor/cmock/examples/{test → temp_sensor/test}/TestTaskScheduler.c +104 -104
- data/vendor/cmock/examples/{test → temp_sensor/test}/TestTemperatureCalculator.c +33 -33
- data/vendor/cmock/examples/{test → temp_sensor/test}/TestTemperatureFilter.c +69 -69
- data/vendor/cmock/examples/{test → temp_sensor/test}/TestTimerConductor.c +32 -32
- data/vendor/cmock/examples/{test → temp_sensor/test}/TestTimerConfigurator.c +112 -112
- data/vendor/cmock/examples/{test → temp_sensor/test}/TestTimerHardware.c +26 -26
- data/vendor/cmock/examples/{test → temp_sensor/test}/TestTimerInterruptConfigurator.c +78 -78
- data/vendor/cmock/examples/{test → temp_sensor/test}/TestTimerInterruptHandler.c +66 -66
- data/vendor/cmock/examples/{test → temp_sensor/test}/TestTimerModel.c +18 -18
- data/vendor/cmock/examples/{test → temp_sensor/test}/TestUsartBaudRateRegisterCalculator.c +21 -21
- data/vendor/cmock/examples/{test → temp_sensor/test}/TestUsartConductor.c +40 -40
- data/vendor/cmock/examples/{test → temp_sensor/test}/TestUsartConfigurator.c +77 -77
- data/vendor/cmock/examples/{test → temp_sensor/test}/TestUsartHardware.c +37 -37
- data/vendor/cmock/examples/{test → temp_sensor/test}/TestUsartModel.c +36 -36
- data/vendor/cmock/examples/{test → temp_sensor/test}/TestUsartPutChar.c +43 -43
- data/vendor/cmock/examples/{test → temp_sensor/test}/TestUsartTransmitBufferStatus.c +22 -22
- data/vendor/cmock/iar/iar_v4/Resource/at91SAM7X256_FLASH.xcl +185 -185
- data/vendor/cmock/iar/iar_v4/Resource/at91SAM7X256_RAM.xcl +185 -185
- data/vendor/cmock/iar/iar_v4/Resource/ioat91sam7x256.ddf +2259 -2259
- data/vendor/cmock/iar/iar_v4/cmock_demo.dep +3691 -3691
- data/vendor/cmock/iar/iar_v4/cmock_demo.ewp +2581 -2581
- data/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X-EK.h +61 -61
- data/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.inc +2314 -2314
- data/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.rdf +4704 -4704
- data/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.tcl +3407 -3407
- data/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256_inc.h +2268 -2268
- data/vendor/cmock/iar/iar_v4/incIAR/ioat91sam7x256.h +4380 -4380
- data/vendor/cmock/iar/iar_v4/incIAR/lib_AT91SAM7X256.h +4211 -4211
- data/vendor/cmock/iar/iar_v4/settings/cmock_demo.cspy.bat +32 -32
- data/vendor/cmock/iar/iar_v4/srcIAR/Cstartup.s79 +265 -265
- data/vendor/cmock/iar/iar_v4/srcIAR/Cstartup_SAM7.c +98 -98
- data/vendor/cmock/iar/iar_v5/Resource/at91SAM7X256_FLASH.icf +43 -43
- data/vendor/cmock/iar/iar_v5/Resource/at91SAM7X256_RAM.icf +42 -42
- data/vendor/cmock/iar/iar_v5/cmock_demo.dep +4204 -4204
- data/vendor/cmock/iar/iar_v5/cmock_demo.ewp +2426 -2426
- data/vendor/cmock/iar/iar_v5/incIAR/AT91SAM7X-EK.h +61 -61
- data/vendor/cmock/iar/iar_v5/incIAR/AT91SAM7X256_inc.h +2268 -2268
- data/vendor/cmock/iar/iar_v5/incIAR/lib_AT91SAM7X256.h +4211 -4211
- data/vendor/cmock/iar/iar_v5/incIAR/project.h +30 -30
- data/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.cspy.bat +33 -33
- data/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X_FLASH_Debug.jlink +12 -12
- data/vendor/cmock/iar/iar_v5/settings/cmock_demo.cspy.bat +33 -33
- data/vendor/cmock/iar/iar_v5/settings/cmock_demo_Binary.jlink +12 -12
- data/vendor/cmock/iar/iar_v5/settings/cmock_demo_FLASH_Debug.jlink +12 -12
- data/vendor/cmock/iar/iar_v5/settings/cmock_demo_RAM_Debug.jlink +12 -12
- data/vendor/cmock/iar/iar_v5/srcIAR/Cstartup.s +299 -299
- data/vendor/cmock/iar/iar_v5/srcIAR/Cstartup_SAM7.c +98 -98
- data/vendor/cmock/lib/cmock.rb +89 -89
- data/vendor/cmock/lib/cmock_config.rb +134 -133
- data/vendor/cmock/lib/cmock_file_writer.rb +40 -33
- data/vendor/cmock/lib/cmock_generator.rb +234 -215
- data/vendor/cmock/lib/cmock_generator_plugin_array.rb +63 -63
- data/vendor/cmock/lib/cmock_generator_plugin_callback.rb +96 -78
- data/vendor/cmock/lib/cmock_generator_plugin_cexception.rb +52 -51
- data/vendor/cmock/lib/cmock_generator_plugin_expect.rb +104 -86
- data/vendor/cmock/lib/cmock_generator_plugin_expect_any_args.rb +68 -68
- data/vendor/cmock/lib/cmock_generator_plugin_ignore.rb +72 -71
- data/vendor/cmock/lib/cmock_generator_plugin_ignore_arg.rb +1 -1
- data/vendor/cmock/lib/cmock_generator_plugin_return_thru_ptr.rb +2 -2
- data/vendor/cmock/lib/cmock_generator_utils.rb +228 -213
- data/vendor/cmock/lib/cmock_header_parser.rb +1 -1
- data/vendor/cmock/lib/cmock_plugin_manager.rb +40 -40
- data/vendor/cmock/lib/cmock_unityhelper_parser.rb +75 -75
- data/vendor/cmock/rakefile_helper.rb +381 -381
- data/vendor/cmock/release/build.info +1 -1
- data/vendor/cmock/release/version.info +1 -1
- data/vendor/cmock/scripts/create_makefile.rb +161 -0
- data/vendor/cmock/scripts/create_mock.rb +8 -0
- data/vendor/cmock/scripts/create_runner.rb +20 -0
- data/vendor/cmock/scripts/test_summary.rb +11 -0
- data/vendor/cmock/src/cmock.c +203 -192
- data/vendor/cmock/src/cmock.h +38 -36
- data/vendor/cmock/src/cmock_internals.h +11 -1
- data/vendor/cmock/targets/clang_strict.yml +90 -85
- data/vendor/cmock/targets/gcc.yml +58 -55
- data/vendor/cmock/targets/gcc_64.yml +58 -55
- data/vendor/cmock/targets/gcc_tiny.yml +80 -0
- data/vendor/cmock/targets/iar_arm_v4.yml +110 -108
- data/vendor/cmock/targets/iar_arm_v5.yml +95 -93
- data/vendor/cmock/test/c/TestCMockC.c +323 -323
- data/vendor/cmock/test/c/TestCMockC.yml +1 -0
- data/vendor/cmock/test/c/TestCMockCDynamic.c +186 -186
- data/vendor/cmock/test/c/TestCMockCDynamic_Runner.c +36 -36
- data/vendor/cmock/test/c/TestCMockC_Runner.c +39 -39
- data/vendor/cmock/test/system/systest_generator.rb +194 -194
- data/vendor/cmock/test/system/test_compilation/callingconv.h +11 -11
- data/vendor/cmock/test/system/test_compilation/osek.h +275 -275
- data/vendor/cmock/test/system/test_compilation/parsing.h +2 -0
- data/vendor/cmock/test/system/test_interactions/all_plugins_but_other_limits.yml +375 -375
- data/vendor/cmock/test/system/test_interactions/all_plugins_coexist.yml +459 -389
- data/vendor/cmock/test/system/test_interactions/array_and_pointer_handling.yml +62 -0
- data/vendor/cmock/test/system/test_interactions/doesnt_leave_details_behind.yml +308 -0
- data/vendor/cmock/test/system/test_interactions/enforce_strict_ordering.yml +23 -23
- data/vendor/cmock/test/system/test_interactions/out_of_memory.yml +65 -0
- data/vendor/cmock/test/system/test_interactions/parsing_challenges.yml +38 -20
- data/vendor/cmock/test/system/test_interactions/struct_union_enum_expect_and_return_with_plugins.yml +280 -0
- data/vendor/cmock/test/test_helper.rb +47 -47
- data/vendor/cmock/test/unit/cmock_config_test.rb +118 -118
- data/vendor/cmock/test/unit/cmock_config_test.yml +5 -5
- data/vendor/cmock/test/unit/cmock_file_writer_test.rb +27 -27
- data/vendor/cmock/test/unit/cmock_generator_main_test.rb +507 -489
- data/vendor/cmock/test/unit/cmock_generator_plugin_array_test.rb +133 -133
- data/vendor/cmock/test/unit/cmock_generator_plugin_callback_test.rb +257 -189
- data/vendor/cmock/test/unit/cmock_generator_plugin_cexception_test.rb +96 -93
- data/vendor/cmock/test/unit/cmock_generator_plugin_expect_a_test.rb +186 -0
- data/vendor/cmock/test/unit/cmock_generator_plugin_expect_any_args_test.rb +60 -81
- data/vendor/cmock/test/unit/{cmock_generator_plugin_expect_test.rb → cmock_generator_plugin_expect_b_test.rb} +202 -205
- data/vendor/cmock/test/unit/cmock_generator_plugin_ignore_arg_test.rb +116 -116
- data/vendor/cmock/test/unit/cmock_generator_plugin_ignore_test.rb +105 -103
- data/vendor/cmock/test/unit/cmock_generator_plugin_return_thru_ptr_test.rb +134 -134
- data/vendor/cmock/test/unit/cmock_generator_utils_test.rb +377 -334
- data/vendor/cmock/test/unit/cmock_header_parser_test.rb +1381 -1337
- data/vendor/cmock/test/unit/cmock_plugin_manager_test.rb +95 -95
- data/vendor/cmock/test/unit/cmock_unityhelper_parser_test.rb +223 -223
- data/vendor/cmock/vendor/c_exception/Gemfile +4 -0
- data/vendor/cmock/vendor/c_exception/Gemfile.lock +12 -0
- data/vendor/cmock/vendor/c_exception/LICENSE.txt +30 -0
- data/vendor/cmock/vendor/c_exception/README.md +146 -0
- data/vendor/cmock/vendor/c_exception/Rakefile +42 -0
- data/vendor/cmock/vendor/c_exception/docs/CExceptionSummary.odt +0 -0
- data/vendor/cmock/vendor/c_exception/docs/CExceptionSummary.pdf +0 -0
- data/vendor/cmock/vendor/c_exception/docs/readme.txt +242 -0
- data/vendor/cmock/vendor/c_exception/lib/CException.c +46 -0
- data/vendor/cmock/vendor/c_exception/lib/CException.h +86 -0
- data/vendor/cmock/vendor/c_exception/makefile +24 -0
- data/vendor/cmock/vendor/c_exception/release/build.info +2 -0
- data/vendor/cmock/vendor/c_exception/release/version.info +2 -0
- data/vendor/cmock/vendor/c_exception/test/CExceptionConfig.h +46 -0
- data/vendor/cmock/vendor/c_exception/test/TestException.c +342 -0
- data/vendor/cmock/vendor/c_exception/test/TestException_Runner.c +74 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/Gemfile +4 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/Gemfile.lock +12 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/auto/colour_prompt.rb +115 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/auto/colour_reporter.rb +39 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/auto/generate_config.yml +36 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/auto/generate_module.rb +202 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/auto/generate_test_runner.rb +320 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/auto/parseOutput.rb +189 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/auto/test_file_filter.rb +23 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/auto/unity_test_summary.rb +139 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/docs/Unity Summary.odt +0 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/docs/Unity Summary.pdf +0 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/docs/Unity Summary.txt +216 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/docs/license.txt +31 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/makefile +41 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/readme.txt +5 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode.c +24 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode.h +3 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode2.c +9 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode2.h +2 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/test/TestProductionCode.c +62 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/test/TestProductionCode2.c +31 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/test/test_runners/TestProductionCode2_Runner.c +46 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/test/test_runners/TestProductionCode_Runner.c +50 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/makefile +45 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/readme.txt +5 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/src/ProductionCode.c +24 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/src/ProductionCode.h +3 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/src/ProductionCode2.c +9 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/src/ProductionCode2.h +2 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/test/TestProductionCode.c +64 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/test/TestProductionCode2.c +33 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/test/test_runners/TestProductionCode2_Runner.c +9 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/test/test_runners/TestProductionCode_Runner.c +11 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/test/test_runners/all_tests.c +12 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/helper/UnityHelper.c +10 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/helper/UnityHelper.h +12 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/makefile +41 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/rakefile.rb +44 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/rakefile_helper.rb +256 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/readme.txt +19 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/src/ProductionCode.c +24 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/src/ProductionCode.h +3 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/src/ProductionCode2.c +9 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/src/ProductionCode2.h +2 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/target_gcc_32.yml +46 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/test/TestProductionCode.c +62 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/test/TestProductionCode2.c +31 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/test/no_ruby/TestProductionCode2_Runner.c +46 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/test/no_ruby/TestProductionCode_Runner.c +50 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/eclipse/error_parsers.txt +26 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/rakefile.rb +37 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/rakefile_helper.rb +179 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/readme.txt +9 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.c +387 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.h +82 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_internals.h +44 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +16 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/main/AllTests.c +21 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/testunity_fixture.c +39 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_Test.c +341 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +41 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.c +56 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.h +17 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/makefile +37 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/rakefile.rb +61 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/rakefile_helper.rb +249 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/release/build.info +2 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/release/version.info +2 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/src/unity.c +1145 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/src/unity.h +307 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/src/unity_internals.h +620 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/targets/clang_strict.yml +83 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/targets/gcc_32.yml +44 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/targets/gcc_64.yml +45 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/targets/hitech_picc18.yml +101 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_arm_v4.yml +89 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_arm_v5.yml +79 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_arm_v5_3.yml +79 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +93 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_cortexm3_v5.yml +83 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_msp430.yml +94 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_sh2a_v6.yml +85 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_cmd.c +57 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_def.c +53 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_cmd.c +79 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_def.c +75 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new1.c +88 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new2.c +88 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_param.c +76 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run1.c +88 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run2.c +88 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_yaml.c +89 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_new1.c +63 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_new2.c +66 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_param.c +54 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_run1.c +63 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_run2.c +66 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_yaml.c +67 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/test_generate_test_runner.rb +88 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/mocksample.c +51 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/sample.yml +9 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/testsample.c +51 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/testparameterized.c +101 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/testunity.c +3447 -0
- data/vendor/cmock/vendor/unity/README.md +211 -0
- data/vendor/cmock/vendor/unity/auto/colour_prompt.rb +115 -0
- data/vendor/cmock/vendor/unity/auto/colour_reporter.rb +39 -0
- data/vendor/cmock/vendor/unity/auto/generate_config.yml +36 -0
- data/vendor/cmock/vendor/unity/auto/generate_module.rb +202 -0
- data/vendor/cmock/vendor/unity/auto/generate_test_runner.rb +374 -0
- data/vendor/cmock/vendor/unity/auto/parseOutput.rb +191 -0
- data/vendor/cmock/vendor/unity/auto/test_file_filter.rb +23 -0
- data/vendor/cmock/vendor/unity/auto/type_sanitizer.rb +8 -0
- data/vendor/cmock/vendor/unity/auto/unity_test_summary.py +135 -0
- data/vendor/cmock/vendor/unity/auto/unity_test_summary.rb +148 -0
- data/vendor/cmock/vendor/unity/docs/Unity Summary.odt +0 -0
- data/vendor/cmock/vendor/unity/docs/Unity Summary.pdf +0 -0
- data/vendor/cmock/vendor/unity/docs/Unity Summary.txt +224 -0
- data/vendor/cmock/vendor/unity/docs/license.txt +21 -0
- data/vendor/{unity/examples/example_3 → cmock/vendor/unity/examples/example_1}/makefile +9 -5
- data/vendor/cmock/vendor/unity/examples/example_1/readme.txt +5 -0
- data/vendor/cmock/vendor/unity/examples/example_1/src/ProductionCode.c +24 -0
- data/vendor/cmock/vendor/unity/examples/example_1/src/ProductionCode.h +3 -0
- data/vendor/cmock/vendor/unity/examples/example_1/src/ProductionCode2.c +11 -0
- data/vendor/cmock/vendor/unity/examples/example_1/src/ProductionCode2.h +2 -0
- data/vendor/cmock/vendor/unity/examples/example_1/test/TestProductionCode.c +62 -0
- data/vendor/cmock/vendor/unity/examples/example_1/test/TestProductionCode2.c +31 -0
- data/vendor/cmock/vendor/unity/examples/example_1/test/test_runners/TestProductionCode2_Runner.c +53 -0
- data/vendor/cmock/vendor/unity/examples/example_1/test/test_runners/TestProductionCode_Runner.c +57 -0
- data/vendor/cmock/vendor/unity/examples/example_2/makefile +71 -0
- data/vendor/cmock/vendor/unity/examples/example_2/readme.txt +5 -0
- data/vendor/cmock/vendor/unity/examples/example_2/src/ProductionCode.c +24 -0
- data/vendor/cmock/vendor/unity/examples/example_2/src/ProductionCode.h +3 -0
- data/vendor/cmock/vendor/unity/examples/example_2/src/ProductionCode2.c +11 -0
- data/vendor/cmock/vendor/unity/examples/example_2/src/ProductionCode2.h +2 -0
- data/vendor/cmock/vendor/unity/examples/example_2/test/TestProductionCode.c +64 -0
- data/vendor/cmock/vendor/unity/examples/example_2/test/TestProductionCode2.c +33 -0
- data/vendor/cmock/vendor/unity/examples/example_2/test/test_runners/TestProductionCode2_Runner.c +9 -0
- data/vendor/cmock/vendor/unity/examples/example_2/test/test_runners/TestProductionCode_Runner.c +11 -0
- data/vendor/cmock/vendor/unity/examples/example_2/test/test_runners/all_tests.c +12 -0
- data/vendor/cmock/vendor/unity/examples/example_3/helper/UnityHelper.c +10 -0
- data/vendor/cmock/vendor/unity/examples/example_3/helper/UnityHelper.h +12 -0
- data/vendor/cmock/vendor/unity/examples/example_3/rakefile.rb +43 -0
- data/vendor/cmock/vendor/unity/examples/example_3/rakefile_helper.rb +256 -0
- data/vendor/cmock/vendor/unity/examples/example_3/readme.txt +19 -0
- data/vendor/cmock/vendor/unity/examples/example_3/src/ProductionCode.c +24 -0
- data/vendor/cmock/vendor/unity/examples/example_3/src/ProductionCode.h +3 -0
- data/vendor/cmock/vendor/unity/examples/example_3/src/ProductionCode2.c +11 -0
- data/vendor/cmock/vendor/unity/examples/example_3/src/ProductionCode2.h +2 -0
- data/vendor/cmock/vendor/unity/examples/example_3/target_gcc_32.yml +46 -0
- data/vendor/cmock/vendor/unity/examples/example_3/test/TestProductionCode.c +62 -0
- data/vendor/cmock/vendor/unity/examples/example_3/test/TestProductionCode2.c +31 -0
- data/vendor/cmock/vendor/unity/extras/eclipse/error_parsers.txt +26 -0
- data/vendor/cmock/vendor/unity/extras/fixture/rakefile.rb +48 -0
- data/vendor/cmock/vendor/unity/extras/fixture/rakefile_helper.rb +179 -0
- data/vendor/cmock/vendor/unity/extras/fixture/readme.txt +9 -0
- data/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture.c +423 -0
- data/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture.h +78 -0
- data/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture_internals.h +46 -0
- data/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +45 -0
- data/vendor/cmock/vendor/unity/extras/fixture/test/Makefile +19 -0
- data/vendor/cmock/vendor/unity/extras/fixture/test/main/AllTests.c +21 -0
- data/vendor/cmock/vendor/unity/extras/fixture/test/testunity_fixture.c +39 -0
- data/vendor/cmock/vendor/unity/extras/fixture/test/unity_fixture_Test.c +373 -0
- data/vendor/cmock/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +43 -0
- data/vendor/cmock/vendor/unity/extras/fixture/test/unity_output_Spy.c +57 -0
- data/vendor/cmock/vendor/unity/extras/fixture/test/unity_output_Spy.h +17 -0
- data/vendor/cmock/vendor/unity/release/build.info +2 -0
- data/vendor/cmock/vendor/unity/release/version.info +2 -0
- data/vendor/cmock/vendor/unity/src/unity.c +1324 -0
- data/vendor/cmock/vendor/unity/src/unity.h +285 -0
- data/vendor/cmock/vendor/unity/src/unity_internals.h +758 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_cmd.c +57 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_def.c +53 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_head1.c +51 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_head1.h +12 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_cmd.c +80 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_def.c +76 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_head1.c +75 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_head1.h +11 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_new1.c +89 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_new2.c +89 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_param.c +77 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_run1.c +89 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_run2.c +89 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_yaml.c +90 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_new1.c +63 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_new2.c +66 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_param.c +54 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_run1.c +63 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_run2.c +66 -0
- data/vendor/cmock/vendor/unity/test/expectdata/testsample_yaml.c +67 -0
- data/vendor/cmock/vendor/unity/test/rakefile +60 -0
- data/vendor/cmock/vendor/unity/test/rakefile_helper.rb +255 -0
- data/vendor/cmock/vendor/unity/test/targets/clang_file.yml +84 -0
- data/vendor/cmock/vendor/unity/test/targets/clang_strict.yml +84 -0
- data/vendor/cmock/vendor/unity/test/targets/gcc_32.yml +50 -0
- data/vendor/cmock/vendor/unity/test/targets/gcc_64.yml +51 -0
- data/vendor/cmock/vendor/unity/test/targets/gcc_auto_limits.yml +47 -0
- data/vendor/cmock/vendor/unity/test/targets/gcc_auto_sizeof.yml +48 -0
- data/vendor/cmock/vendor/unity/test/targets/gcc_auto_stdint.yml +59 -0
- data/vendor/cmock/vendor/unity/test/targets/gcc_manual_math.yml +47 -0
- data/vendor/cmock/vendor/unity/test/targets/hitech_picc18.yml +101 -0
- data/vendor/cmock/vendor/unity/test/targets/iar_arm_v4.yml +89 -0
- data/vendor/cmock/vendor/unity/test/targets/iar_arm_v5.yml +79 -0
- data/vendor/cmock/vendor/unity/test/targets/iar_arm_v5_3.yml +79 -0
- data/vendor/cmock/vendor/unity/test/targets/iar_armcortex_LM3S9B92_v5_4.yml +93 -0
- data/vendor/cmock/vendor/unity/test/targets/iar_cortexm3_v5.yml +83 -0
- data/vendor/cmock/vendor/unity/test/targets/iar_msp430.yml +94 -0
- data/vendor/cmock/vendor/unity/test/targets/iar_sh2a_v6.yml +85 -0
- data/vendor/cmock/vendor/unity/test/testdata/mocksample.c +51 -0
- data/vendor/cmock/vendor/unity/test/testdata/sample.yml +9 -0
- data/vendor/cmock/vendor/unity/test/testdata/testsample.c +51 -0
- data/vendor/cmock/vendor/unity/test/tests/test_generate_test_runner.rb +102 -0
- data/vendor/cmock/vendor/unity/test/tests/testparameterized.c +104 -0
- data/vendor/cmock/vendor/unity/test/tests/testunity.c +3656 -0
- data/vendor/unity/README.md +211 -203
- data/vendor/unity/auto/colour_reporter.rb +38 -38
- data/vendor/unity/auto/generate_config.yml +36 -36
- data/vendor/unity/auto/generate_module.rb +202 -202
- data/vendor/unity/auto/generate_test_runner.rb +389 -347
- data/vendor/unity/auto/parseOutput.rb +2 -0
- data/vendor/unity/auto/unity_test_summary.py +135 -135
- data/vendor/unity/auto/unity_test_summary.rb +148 -139
- data/vendor/unity/docs/Unity Summary.odt +0 -0
- data/vendor/unity/docs/Unity Summary.pdf +0 -0
- data/vendor/unity/docs/Unity Summary.txt +224 -216
- data/vendor/unity/docs/license.txt +21 -21
- data/vendor/unity/examples/example_1/makefile +7 -3
- data/vendor/unity/examples/example_1/test/test_runners/TestProductionCode2_Runner.c +29 -9
- data/vendor/unity/examples/example_1/test/test_runners/TestProductionCode_Runner.c +26 -6
- data/vendor/unity/examples/example_2/makefile +7 -4
- data/vendor/unity/extras/fixture/rakefile.rb +48 -48
- data/vendor/unity/extras/fixture/rakefile_helper.rb +179 -179
- data/vendor/unity/extras/fixture/src/unity_fixture.c +123 -78
- data/vendor/unity/extras/fixture/src/unity_fixture.h +6 -14
- data/vendor/unity/extras/fixture/src/unity_fixture_internals.h +12 -15
- data/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +25 -0
- data/vendor/unity/extras/fixture/test/Makefile +35 -0
- data/vendor/unity/extras/fixture/test/main/AllTests.c +2 -1
- data/vendor/unity/extras/fixture/test/unity_fixture_Test.c +99 -4
- data/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +10 -0
- data/vendor/unity/extras/fixture/test/unity_output_Spy.c +3 -1
- data/vendor/unity/release/build.info +1 -1
- data/vendor/unity/release/version.info +1 -1
- data/vendor/unity/src/unity.c +1324 -1177
- data/vendor/unity/src/unity.h +285 -272
- data/vendor/unity/src/unity_internals.h +758 -692
- data/vendor/unity/test/expectdata/testsample_head1.c +51 -0
- data/vendor/unity/test/expectdata/testsample_head1.h +12 -0
- data/vendor/unity/test/expectdata/testsample_mock_cmd.c +1 -0
- data/vendor/unity/test/expectdata/testsample_mock_def.c +1 -0
- data/vendor/unity/test/expectdata/testsample_mock_head1.c +75 -0
- data/vendor/unity/test/expectdata/testsample_mock_head1.h +11 -0
- data/vendor/unity/test/expectdata/testsample_mock_new1.c +3 -2
- data/vendor/unity/test/expectdata/testsample_mock_new2.c +1 -0
- data/vendor/unity/test/expectdata/testsample_mock_param.c +1 -0
- data/vendor/unity/test/expectdata/testsample_mock_run1.c +3 -2
- data/vendor/unity/test/expectdata/testsample_mock_run2.c +1 -0
- data/vendor/unity/test/expectdata/testsample_mock_yaml.c +4 -3
- data/vendor/unity/test/expectdata/testsample_new1.c +2 -2
- data/vendor/unity/test/expectdata/testsample_run1.c +2 -2
- data/vendor/unity/test/expectdata/testsample_yaml.c +3 -3
- data/vendor/unity/test/rakefile +60 -60
- data/vendor/unity/test/rakefile_helper.rb +255 -249
- data/vendor/unity/test/targets/clang_file.yml +83 -0
- data/vendor/unity/test/targets/clang_strict.yml +83 -83
- data/vendor/unity/test/targets/gcc_32.yml +49 -49
- data/vendor/unity/test/targets/gcc_64.yml +50 -50
- data/vendor/unity/test/targets/gcc_auto_limits.yml +46 -46
- data/vendor/unity/test/targets/gcc_auto_sizeof.yml +47 -47
- data/vendor/unity/test/targets/gcc_auto_stdint.yml +58 -58
- data/vendor/unity/test/targets/gcc_manual_math.yml +46 -0
- data/vendor/unity/test/targets/hitech_picc18.yml +101 -101
- data/vendor/unity/test/targets/iar_arm_v4.yml +89 -89
- data/vendor/unity/test/targets/iar_arm_v5.yml +79 -79
- data/vendor/unity/test/targets/iar_arm_v5_3.yml +79 -79
- data/vendor/unity/test/targets/iar_armcortex_LM3S9B92_v5_4.yml +93 -93
- data/vendor/unity/test/targets/iar_cortexm3_v5.yml +83 -83
- data/vendor/unity/test/targets/iar_msp430.yml +94 -94
- data/vendor/unity/test/targets/iar_sh2a_v6.yml +85 -85
- data/vendor/unity/test/testdata/mocksample.c +51 -51
- data/vendor/unity/test/testdata/sample.yml +8 -8
- data/vendor/unity/test/testdata/testsample.c +51 -51
- data/vendor/unity/test/tests/test_generate_test_runner.rb +102 -88
- data/vendor/unity/test/tests/testparameterized.c +104 -101
- data/vendor/unity/test/tests/testunity.c +3676 -3447
- metadata +549 -191
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
|
|
2
|
+
#include "ProductionCode2.h"
|
|
3
|
+
|
|
4
|
+
char* ThisFunctionHasNotBeenTested(int Poor, char* LittleFunction)
|
|
5
|
+
{
|
|
6
|
+
(void)Poor;
|
|
7
|
+
(void)LittleFunction;
|
|
8
|
+
//Since There Are No Tests Yet, This Function Could Be Empty For All We Know.
|
|
9
|
+
// Which isn't terribly useful... but at least we put in a TEST_IGNORE so we won't forget
|
|
10
|
+
return (char*)0;
|
|
11
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# Copied from ~Unity/targets/gcc_32.yml
|
|
2
|
+
unity_root: &unity_root '../..'
|
|
3
|
+
compiler:
|
|
4
|
+
path: gcc
|
|
5
|
+
source_path: 'src/'
|
|
6
|
+
unit_tests_path: &unit_tests_path 'test/'
|
|
7
|
+
build_path: &build_path 'build/'
|
|
8
|
+
options:
|
|
9
|
+
- '-c'
|
|
10
|
+
- '-m32'
|
|
11
|
+
- '-Wall'
|
|
12
|
+
- '-Wno-address'
|
|
13
|
+
- '-std=c99'
|
|
14
|
+
- '-pedantic'
|
|
15
|
+
includes:
|
|
16
|
+
prefix: '-I'
|
|
17
|
+
items:
|
|
18
|
+
- 'src/'
|
|
19
|
+
- '../../src/'
|
|
20
|
+
- *unit_tests_path
|
|
21
|
+
defines:
|
|
22
|
+
prefix: '-D'
|
|
23
|
+
items:
|
|
24
|
+
- UNITY_INCLUDE_DOUBLE
|
|
25
|
+
- UNITY_SUPPORT_TEST_CASES
|
|
26
|
+
object_files:
|
|
27
|
+
prefix: '-o'
|
|
28
|
+
extension: '.o'
|
|
29
|
+
destination: *build_path
|
|
30
|
+
linker:
|
|
31
|
+
path: gcc
|
|
32
|
+
options:
|
|
33
|
+
- -lm
|
|
34
|
+
- '-m32'
|
|
35
|
+
includes:
|
|
36
|
+
prefix: '-I'
|
|
37
|
+
object_files:
|
|
38
|
+
path: *build_path
|
|
39
|
+
extension: '.o'
|
|
40
|
+
bin_files:
|
|
41
|
+
prefix: '-o'
|
|
42
|
+
extension: '.exe'
|
|
43
|
+
destination: *build_path
|
|
44
|
+
colour: true
|
|
45
|
+
:unity:
|
|
46
|
+
:plugins: []
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
|
|
2
|
+
#include "ProductionCode.h"
|
|
3
|
+
#include "unity.h"
|
|
4
|
+
|
|
5
|
+
//sometimes you may want to get at local data in a module.
|
|
6
|
+
//for example: If you plan to pass by reference, this could be useful
|
|
7
|
+
//however, it should often be avoided
|
|
8
|
+
extern int Counter;
|
|
9
|
+
|
|
10
|
+
void setUp(void)
|
|
11
|
+
{
|
|
12
|
+
//This is run before EACH TEST
|
|
13
|
+
Counter = 0x5a5a;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
void tearDown(void)
|
|
17
|
+
{
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
void test_FindFunction_WhichIsBroken_ShouldReturnZeroIfItemIsNotInList_WhichWorksEvenInOurBrokenCode(void)
|
|
21
|
+
{
|
|
22
|
+
//All of these should pass
|
|
23
|
+
TEST_ASSERT_EQUAL(0, FindFunction_WhichIsBroken(78));
|
|
24
|
+
TEST_ASSERT_EQUAL(0, FindFunction_WhichIsBroken(1));
|
|
25
|
+
TEST_ASSERT_EQUAL(0, FindFunction_WhichIsBroken(33));
|
|
26
|
+
TEST_ASSERT_EQUAL(0, FindFunction_WhichIsBroken(999));
|
|
27
|
+
TEST_ASSERT_EQUAL(0, FindFunction_WhichIsBroken(-1));
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
void test_FindFunction_WhichIsBroken_ShouldReturnTheIndexForItemsInList_WhichWillFailBecauseOurFunctionUnderTestIsBroken(void)
|
|
31
|
+
{
|
|
32
|
+
// You should see this line fail in your test summary
|
|
33
|
+
TEST_ASSERT_EQUAL(1, FindFunction_WhichIsBroken(34));
|
|
34
|
+
|
|
35
|
+
// Notice the rest of these didn't get a chance to run because the line above failed.
|
|
36
|
+
// Unit tests abort each test function on the first sign of trouble.
|
|
37
|
+
// Then NEXT test function runs as normal.
|
|
38
|
+
TEST_ASSERT_EQUAL(8, FindFunction_WhichIsBroken(8888));
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
void test_FunctionWhichReturnsLocalVariable_ShouldReturnTheCurrentCounterValue(void)
|
|
42
|
+
{
|
|
43
|
+
//This should be true because setUp set this up for us before this test
|
|
44
|
+
TEST_ASSERT_EQUAL_HEX(0x5a5a, FunctionWhichReturnsLocalVariable());
|
|
45
|
+
|
|
46
|
+
//This should be true because we can still change our answer
|
|
47
|
+
Counter = 0x1234;
|
|
48
|
+
TEST_ASSERT_EQUAL_HEX(0x1234, FunctionWhichReturnsLocalVariable());
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
void test_FunctionWhichReturnsLocalVariable_ShouldReturnTheCurrentCounterValueAgain(void)
|
|
52
|
+
{
|
|
53
|
+
//This should be true again because setup was rerun before this test (and after we changed it to 0x1234)
|
|
54
|
+
TEST_ASSERT_EQUAL_HEX(0x5a5a, FunctionWhichReturnsLocalVariable());
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
void test_FunctionWhichReturnsLocalVariable_ShouldReturnCurrentCounter_ButFailsBecauseThisTestIsActuallyFlawed(void)
|
|
58
|
+
{
|
|
59
|
+
//Sometimes you get the test wrong. When that happens, you get a failure too... and a quick look should tell
|
|
60
|
+
// you what actually happened...which in this case was a failure to setup the initial condition.
|
|
61
|
+
TEST_ASSERT_EQUAL_HEX(0x1234, FunctionWhichReturnsLocalVariable());
|
|
62
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
|
|
2
|
+
#include "ProductionCode2.h"
|
|
3
|
+
#include "unity.h"
|
|
4
|
+
|
|
5
|
+
/* These should be ignored because they are commented out in various ways:
|
|
6
|
+
#include "whatever.h"
|
|
7
|
+
*/
|
|
8
|
+
//#include "somethingelse.h"
|
|
9
|
+
|
|
10
|
+
void setUp(void)
|
|
11
|
+
{
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
void tearDown(void)
|
|
15
|
+
{
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
void test_IgnoredTest(void)
|
|
19
|
+
{
|
|
20
|
+
TEST_IGNORE_MESSAGE("This Test Was Ignored On Purpose");
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
void test_AnotherIgnoredTest(void)
|
|
24
|
+
{
|
|
25
|
+
TEST_IGNORE_MESSAGE("These Can Be Useful For Leaving Yourself Notes On What You Need To Do Yet");
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
void test_ThisFunctionHasNotBeenTested_NeedsToBeImplemented(void)
|
|
29
|
+
{
|
|
30
|
+
TEST_IGNORE(); //Like This
|
|
31
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Eclipse error parsers
|
|
2
|
+
=====================
|
|
3
|
+
|
|
4
|
+
These are a godsend for extracting & quickly navigating to
|
|
5
|
+
warnings & error messages from console output. Unforunately
|
|
6
|
+
I don't know how to write an Eclipse plugin so you'll have
|
|
7
|
+
to add them manually.
|
|
8
|
+
|
|
9
|
+
To add a console parser to Eclipse, go to Window --> Preferences
|
|
10
|
+
--> C/C++ --> Build --> Settings. Click on the 'Error Parsers'
|
|
11
|
+
tab and then click the 'Add...' button. See the table below for
|
|
12
|
+
the parser fields to add.
|
|
13
|
+
|
|
14
|
+
Eclipse will only parse the console output during a build, so
|
|
15
|
+
running your unit tests must be part of your build process.
|
|
16
|
+
Either add this to your make/rakefile, or add it as a post-
|
|
17
|
+
build step in your Eclipse project settings.
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
Unity unit test error parsers
|
|
21
|
+
-----------------------------
|
|
22
|
+
Severity Pattern File Line Description
|
|
23
|
+
-------------------------------------------------------------------------------
|
|
24
|
+
Error (\.+)(.*?):(\d+):(.*?):FAIL: (.*) $2 $3 $5
|
|
25
|
+
Warning (\.+)(.*?):(\d+):(.*?):IGNORE: (.*) $2 $3 $5
|
|
26
|
+
Warning (\.+)(.*?):(\d+):(.*?):IGNORE\s*$ $2 $3 Ignored test
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# ==========================================
|
|
2
|
+
# Unity Project - A Test Framework for C
|
|
3
|
+
# Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
|
|
4
|
+
# [Released under MIT License. Please refer to license.txt for details]
|
|
5
|
+
# ==========================================
|
|
6
|
+
|
|
7
|
+
HERE = File.expand_path(File.dirname(__FILE__)) + '/'
|
|
8
|
+
|
|
9
|
+
require 'rake'
|
|
10
|
+
require 'rake/clean'
|
|
11
|
+
require 'rake/testtask'
|
|
12
|
+
require HERE + 'rakefile_helper'
|
|
13
|
+
|
|
14
|
+
TEMP_DIRS = [
|
|
15
|
+
File.join(HERE, 'build')
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
TEMP_DIRS.each do |dir|
|
|
19
|
+
directory(dir)
|
|
20
|
+
CLOBBER.include(dir)
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
task :prepare_for_tests => TEMP_DIRS
|
|
24
|
+
|
|
25
|
+
include RakefileHelpers
|
|
26
|
+
|
|
27
|
+
# Load default configuration, for now
|
|
28
|
+
DEFAULT_CONFIG_FILE = 'gcc_auto_stdint.yml'
|
|
29
|
+
configure_toolchain(DEFAULT_CONFIG_FILE)
|
|
30
|
+
|
|
31
|
+
task :unit => [:prepare_for_tests] do
|
|
32
|
+
run_tests
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
desc "Build and test Unity Framework"
|
|
36
|
+
task :all => [:clean, :unit]
|
|
37
|
+
task :default => [:clobber, :all]
|
|
38
|
+
task :ci => [:no_color, :default]
|
|
39
|
+
task :cruise => [:no_color, :default]
|
|
40
|
+
|
|
41
|
+
desc "Load configuration"
|
|
42
|
+
task :config, :config_file do |t, args|
|
|
43
|
+
configure_toolchain(args[:config_file])
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
task :no_color do
|
|
47
|
+
$colour_output = false
|
|
48
|
+
end
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
# ==========================================
|
|
2
|
+
# Unity Project - A Test Framework for C
|
|
3
|
+
# Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
|
|
4
|
+
# [Released under MIT License. Please refer to license.txt for details]
|
|
5
|
+
# ==========================================
|
|
6
|
+
|
|
7
|
+
require 'yaml'
|
|
8
|
+
require 'fileutils'
|
|
9
|
+
require HERE+'../../auto/unity_test_summary'
|
|
10
|
+
require HERE+'../../auto/generate_test_runner'
|
|
11
|
+
require HERE+'../../auto/colour_reporter'
|
|
12
|
+
|
|
13
|
+
module RakefileHelpers
|
|
14
|
+
|
|
15
|
+
C_EXTENSION = '.c'
|
|
16
|
+
|
|
17
|
+
def load_configuration(config_file)
|
|
18
|
+
unless ($configured)
|
|
19
|
+
$cfg_file = HERE+"../../test/targets/#{config_file}" unless (config_file =~ /[\\|\/]/)
|
|
20
|
+
$cfg = YAML.load(File.read($cfg_file))
|
|
21
|
+
$colour_output = false unless $cfg['colour']
|
|
22
|
+
$configured = true if (config_file != DEFAULT_CONFIG_FILE)
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def configure_clean
|
|
27
|
+
CLEAN.include($cfg['compiler']['build_path'] + '*.*') unless $cfg['compiler']['build_path'].nil?
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
def configure_toolchain(config_file=DEFAULT_CONFIG_FILE)
|
|
31
|
+
config_file += '.yml' unless config_file =~ /\.yml$/
|
|
32
|
+
config_file = config_file unless config_file =~ /[\\|\/]/
|
|
33
|
+
load_configuration(config_file)
|
|
34
|
+
configure_clean
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
def tackit(strings)
|
|
38
|
+
if strings.is_a?(Array)
|
|
39
|
+
result = "\"#{strings.join}\""
|
|
40
|
+
else
|
|
41
|
+
result = strings
|
|
42
|
+
end
|
|
43
|
+
return result
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
def squash(prefix, items)
|
|
47
|
+
result = ''
|
|
48
|
+
items.each { |item| result += " #{prefix}#{tackit(item)}" }
|
|
49
|
+
return result
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
def build_compiler_fields
|
|
53
|
+
command = tackit($cfg['compiler']['path'])
|
|
54
|
+
if $cfg['compiler']['defines']['items'].nil?
|
|
55
|
+
defines = ''
|
|
56
|
+
else
|
|
57
|
+
defines = squash($cfg['compiler']['defines']['prefix'], $cfg['compiler']['defines']['items'] + ['UNITY_OUTPUT_CHAR=UnityOutputCharSpy_OutputChar'])
|
|
58
|
+
end
|
|
59
|
+
options = squash('', $cfg['compiler']['options'])
|
|
60
|
+
includes = squash($cfg['compiler']['includes']['prefix'], $cfg['compiler']['includes']['items'])
|
|
61
|
+
includes = includes.gsub(/\\ /, ' ').gsub(/\\\"/, '"').gsub(/\\$/, '') # Remove trailing slashes (for IAR)
|
|
62
|
+
return {:command => command, :defines => defines, :options => options, :includes => includes}
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
def compile(file, defines=[])
|
|
66
|
+
compiler = build_compiler_fields
|
|
67
|
+
unity_include = $cfg['compiler']['includes']['prefix']+'../../src'
|
|
68
|
+
cmd_str = "#{compiler[:command]}#{compiler[:defines]}#{compiler[:options]}#{compiler[:includes]} #{unity_include} #{file} " +
|
|
69
|
+
"#{$cfg['compiler']['object_files']['prefix']}#{$cfg['compiler']['object_files']['destination']}" +
|
|
70
|
+
"#{File.basename(file, C_EXTENSION)}#{$cfg['compiler']['object_files']['extension']}"
|
|
71
|
+
execute(cmd_str)
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
def build_linker_fields
|
|
75
|
+
command = tackit($cfg['linker']['path'])
|
|
76
|
+
if $cfg['linker']['options'].nil?
|
|
77
|
+
options = ''
|
|
78
|
+
else
|
|
79
|
+
options = squash('', $cfg['linker']['options'])
|
|
80
|
+
end
|
|
81
|
+
if ($cfg['linker']['includes'].nil? || $cfg['linker']['includes']['items'].nil?)
|
|
82
|
+
includes = ''
|
|
83
|
+
else
|
|
84
|
+
includes = squash($cfg['linker']['includes']['prefix'], $cfg['linker']['includes']['items'])
|
|
85
|
+
end
|
|
86
|
+
includes = includes.gsub(/\\ /, ' ').gsub(/\\\"/, '"').gsub(/\\$/, '') # Remove trailing slashes (for IAR)
|
|
87
|
+
return {:command => command, :options => options, :includes => includes}
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
def link_it(exe_name, obj_list)
|
|
91
|
+
linker = build_linker_fields
|
|
92
|
+
cmd_str = "#{linker[:command]}#{linker[:options]}#{linker[:includes]} " +
|
|
93
|
+
(obj_list.map{|obj|"#{$cfg['linker']['object_files']['path']}#{obj} "}).join +
|
|
94
|
+
$cfg['linker']['bin_files']['prefix'] + ' ' +
|
|
95
|
+
$cfg['linker']['bin_files']['destination'] +
|
|
96
|
+
exe_name + $cfg['linker']['bin_files']['extension']
|
|
97
|
+
execute(cmd_str)
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
def build_simulator_fields
|
|
101
|
+
return nil if $cfg['simulator'].nil?
|
|
102
|
+
if $cfg['simulator']['path'].nil?
|
|
103
|
+
command = ''
|
|
104
|
+
else
|
|
105
|
+
command = (tackit($cfg['simulator']['path']) + ' ')
|
|
106
|
+
end
|
|
107
|
+
if $cfg['simulator']['pre_support'].nil?
|
|
108
|
+
pre_support = ''
|
|
109
|
+
else
|
|
110
|
+
pre_support = squash('', $cfg['simulator']['pre_support'])
|
|
111
|
+
end
|
|
112
|
+
if $cfg['simulator']['post_support'].nil?
|
|
113
|
+
post_support = ''
|
|
114
|
+
else
|
|
115
|
+
post_support = squash('', $cfg['simulator']['post_support'])
|
|
116
|
+
end
|
|
117
|
+
return {:command => command, :pre_support => pre_support, :post_support => post_support}
|
|
118
|
+
end
|
|
119
|
+
|
|
120
|
+
def execute(command_string, verbose=true)
|
|
121
|
+
report command_string
|
|
122
|
+
output = `#{command_string}`.chomp
|
|
123
|
+
report(output) if (verbose && !output.nil? && (output.length > 0))
|
|
124
|
+
if ($?.exitstatus != 0)
|
|
125
|
+
raise "Command failed. (Returned #{$?.exitstatus})"
|
|
126
|
+
end
|
|
127
|
+
return output
|
|
128
|
+
end
|
|
129
|
+
|
|
130
|
+
def report_summary
|
|
131
|
+
summary = UnityTestSummary.new
|
|
132
|
+
summary.set_root_path(HERE)
|
|
133
|
+
results_glob = "#{$cfg['compiler']['build_path']}*.test*"
|
|
134
|
+
results_glob.gsub!(/\\/, '/')
|
|
135
|
+
results = Dir[results_glob]
|
|
136
|
+
summary.set_targets(results)
|
|
137
|
+
summary.run
|
|
138
|
+
end
|
|
139
|
+
|
|
140
|
+
def run_tests
|
|
141
|
+
report 'Running Unity system tests...'
|
|
142
|
+
|
|
143
|
+
# Tack on TEST define for compiling unit tests
|
|
144
|
+
load_configuration($cfg_file)
|
|
145
|
+
test_defines = ['TEST']
|
|
146
|
+
$cfg['compiler']['defines']['items'] = [] if $cfg['compiler']['defines']['items'].nil?
|
|
147
|
+
|
|
148
|
+
# Get a list of all source files needed
|
|
149
|
+
src_files = Dir[HERE+'src/*.c']
|
|
150
|
+
src_files += Dir[HERE+'test/*.c']
|
|
151
|
+
src_files += Dir[HERE+'test/main/*.c']
|
|
152
|
+
src_files << '../../src/unity.c'
|
|
153
|
+
|
|
154
|
+
# Build object files
|
|
155
|
+
src_files.each { |f| compile(f, test_defines) }
|
|
156
|
+
obj_list = src_files.map {|f| File.basename(f.ext($cfg['compiler']['object_files']['extension'])) }
|
|
157
|
+
|
|
158
|
+
# Link the test executable
|
|
159
|
+
test_base = "framework_test"
|
|
160
|
+
link_it(test_base, obj_list)
|
|
161
|
+
|
|
162
|
+
# Execute unit test and generate results file
|
|
163
|
+
simulator = build_simulator_fields
|
|
164
|
+
executable = $cfg['linker']['bin_files']['destination'] + test_base + $cfg['linker']['bin_files']['extension']
|
|
165
|
+
if simulator.nil?
|
|
166
|
+
cmd_str = executable + " -v -r"
|
|
167
|
+
else
|
|
168
|
+
cmd_str = "#{simulator[:command]} #{simulator[:pre_support]} #{executable} #{simulator[:post_support]}"
|
|
169
|
+
end
|
|
170
|
+
output = execute(cmd_str)
|
|
171
|
+
test_results = $cfg['compiler']['build_path'] + test_base
|
|
172
|
+
if output.match(/OK$/m).nil?
|
|
173
|
+
test_results += '.testfail'
|
|
174
|
+
else
|
|
175
|
+
test_results += '.testpass'
|
|
176
|
+
end
|
|
177
|
+
File.open(test_results, 'w') { |f| f.print output }
|
|
178
|
+
end
|
|
179
|
+
end
|
|
@@ -0,0 +1,9 @@
|
|
|
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
|
+
This Framework is an optional add-on to Unity. By including unity_framework.h in place of unity.h,
|
|
8
|
+
you may now work with Unity in a manner similar to CppUTest. This framework adds the concepts of
|
|
9
|
+
test groups and gives finer control of your tests over the command line.
|
|
@@ -0,0 +1,423 @@
|
|
|
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 <string.h>
|
|
9
|
+
#include <stdio.h>
|
|
10
|
+
#include "unity_fixture.h"
|
|
11
|
+
#include "unity_internals.h"
|
|
12
|
+
|
|
13
|
+
UNITY_FIXTURE_T UnityFixture;
|
|
14
|
+
|
|
15
|
+
//If you decide to use the function pointer approach.
|
|
16
|
+
int (*outputChar)(int) = putchar;
|
|
17
|
+
|
|
18
|
+
int verbose = 0;
|
|
19
|
+
|
|
20
|
+
void setUp(void);
|
|
21
|
+
void tearDown(void);
|
|
22
|
+
void setUp(void) { /*does nothing*/ }
|
|
23
|
+
void tearDown(void) { /*does nothing*/ }
|
|
24
|
+
|
|
25
|
+
static void announceTestRun(unsigned int runNumber)
|
|
26
|
+
{
|
|
27
|
+
UnityPrint("Unity test run ");
|
|
28
|
+
UnityPrintNumber(runNumber+1);
|
|
29
|
+
UnityPrint(" of ");
|
|
30
|
+
UnityPrintNumber(UnityFixture.RepeatCount);
|
|
31
|
+
UNITY_PRINT_EOL();
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
int UnityMain(int argc, const char* argv[], void (*runAllTests)(void))
|
|
35
|
+
{
|
|
36
|
+
int result = UnityGetCommandLineOptions(argc, argv);
|
|
37
|
+
unsigned int r;
|
|
38
|
+
if (result != 0)
|
|
39
|
+
return result;
|
|
40
|
+
|
|
41
|
+
for (r = 0; r < UnityFixture.RepeatCount; r++)
|
|
42
|
+
{
|
|
43
|
+
UnityBegin(argv[0]);
|
|
44
|
+
announceTestRun(r);
|
|
45
|
+
runAllTests();
|
|
46
|
+
UNITY_PRINT_EOL();
|
|
47
|
+
UnityEnd();
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
return UnityFailureCount();
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
static int selected(const char * filter, const char * name)
|
|
54
|
+
{
|
|
55
|
+
if (filter == 0)
|
|
56
|
+
return 1;
|
|
57
|
+
return strstr(name, filter) ? 1 : 0;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
static int testSelected(const char* test)
|
|
61
|
+
{
|
|
62
|
+
return selected(UnityFixture.NameFilter, test);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
static int groupSelected(const char* group)
|
|
66
|
+
{
|
|
67
|
+
return selected(UnityFixture.GroupFilter, group);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
static void runTestCase(void)
|
|
71
|
+
{
|
|
72
|
+
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
void UnityTestRunner(unityfunction* setup,
|
|
76
|
+
unityfunction* testBody,
|
|
77
|
+
unityfunction* teardown,
|
|
78
|
+
const char * printableName,
|
|
79
|
+
const char * group,
|
|
80
|
+
const char * name,
|
|
81
|
+
const char * file, int line)
|
|
82
|
+
{
|
|
83
|
+
if (testSelected(name) && groupSelected(group))
|
|
84
|
+
{
|
|
85
|
+
Unity.CurrentTestFailed = 0;
|
|
86
|
+
Unity.TestFile = file;
|
|
87
|
+
Unity.CurrentTestName = printableName;
|
|
88
|
+
Unity.CurrentTestLineNumber = line;
|
|
89
|
+
if (!UnityFixture.Verbose)
|
|
90
|
+
UNITY_OUTPUT_CHAR('.');
|
|
91
|
+
else
|
|
92
|
+
UnityPrint(printableName);
|
|
93
|
+
|
|
94
|
+
Unity.NumberOfTests++;
|
|
95
|
+
UnityMalloc_StartTest();
|
|
96
|
+
UnityPointer_Init();
|
|
97
|
+
|
|
98
|
+
runTestCase();
|
|
99
|
+
if (TEST_PROTECT())
|
|
100
|
+
{
|
|
101
|
+
setup();
|
|
102
|
+
testBody();
|
|
103
|
+
}
|
|
104
|
+
if (TEST_PROTECT())
|
|
105
|
+
{
|
|
106
|
+
teardown();
|
|
107
|
+
}
|
|
108
|
+
if (TEST_PROTECT())
|
|
109
|
+
{
|
|
110
|
+
UnityPointer_UndoAllSets();
|
|
111
|
+
if (!Unity.CurrentTestFailed)
|
|
112
|
+
UnityMalloc_EndTest();
|
|
113
|
+
}
|
|
114
|
+
UnityConcludeFixtureTest();
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
void UnityIgnoreTest(const char * printableName, const char * group, const char * name)
|
|
119
|
+
{
|
|
120
|
+
if (testSelected(name) && groupSelected(group))
|
|
121
|
+
{
|
|
122
|
+
Unity.NumberOfTests++;
|
|
123
|
+
Unity.CurrentTestIgnored = 1;
|
|
124
|
+
if (!UnityFixture.Verbose)
|
|
125
|
+
UNITY_OUTPUT_CHAR('!');
|
|
126
|
+
else
|
|
127
|
+
UnityPrint(printableName);
|
|
128
|
+
UnityConcludeFixtureTest();
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
//-------------------------------------------------
|
|
134
|
+
//Malloc and free stuff
|
|
135
|
+
//
|
|
136
|
+
#define MALLOC_DONT_FAIL -1
|
|
137
|
+
static int malloc_count;
|
|
138
|
+
static int malloc_fail_countdown = MALLOC_DONT_FAIL;
|
|
139
|
+
|
|
140
|
+
void UnityMalloc_StartTest(void)
|
|
141
|
+
{
|
|
142
|
+
malloc_count = 0;
|
|
143
|
+
malloc_fail_countdown = MALLOC_DONT_FAIL;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
void UnityMalloc_EndTest(void)
|
|
147
|
+
{
|
|
148
|
+
malloc_fail_countdown = MALLOC_DONT_FAIL;
|
|
149
|
+
if (malloc_count != 0)
|
|
150
|
+
{
|
|
151
|
+
TEST_FAIL_MESSAGE("This test leaks!");
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
void UnityMalloc_MakeMallocFailAfterCount(int countdown)
|
|
156
|
+
{
|
|
157
|
+
malloc_fail_countdown = countdown;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
#ifdef malloc
|
|
161
|
+
#undef malloc
|
|
162
|
+
#endif
|
|
163
|
+
|
|
164
|
+
#ifdef free
|
|
165
|
+
#undef free
|
|
166
|
+
#endif
|
|
167
|
+
|
|
168
|
+
#ifdef calloc
|
|
169
|
+
#undef calloc
|
|
170
|
+
#endif
|
|
171
|
+
|
|
172
|
+
#ifdef realloc
|
|
173
|
+
#undef realloc
|
|
174
|
+
#endif
|
|
175
|
+
|
|
176
|
+
#include <stdlib.h>
|
|
177
|
+
#include <string.h>
|
|
178
|
+
|
|
179
|
+
typedef struct GuardBytes
|
|
180
|
+
{
|
|
181
|
+
size_t size;
|
|
182
|
+
char guard_space[4];
|
|
183
|
+
} Guard;
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
static const char end[] = "END";
|
|
187
|
+
|
|
188
|
+
void * unity_malloc(size_t size)
|
|
189
|
+
{
|
|
190
|
+
char* mem;
|
|
191
|
+
Guard* guard;
|
|
192
|
+
|
|
193
|
+
if (malloc_fail_countdown != MALLOC_DONT_FAIL)
|
|
194
|
+
{
|
|
195
|
+
if (malloc_fail_countdown == 0)
|
|
196
|
+
return 0;
|
|
197
|
+
malloc_fail_countdown--;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
malloc_count++;
|
|
201
|
+
|
|
202
|
+
guard = (Guard*)UNITY_FIXTURE_MALLOC(size + sizeof(Guard) + sizeof(end));
|
|
203
|
+
guard->size = size;
|
|
204
|
+
mem = (char*)&(guard[1]);
|
|
205
|
+
memcpy(&mem[size], end, sizeof(end));
|
|
206
|
+
|
|
207
|
+
return (void*)mem;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
static int isOverrun(void * mem)
|
|
211
|
+
{
|
|
212
|
+
Guard* guard = (Guard*)mem;
|
|
213
|
+
char* memAsChar = (char*)mem;
|
|
214
|
+
guard--;
|
|
215
|
+
|
|
216
|
+
return strcmp(&memAsChar[guard->size], end) != 0;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
static void release_memory(void * mem)
|
|
220
|
+
{
|
|
221
|
+
Guard* guard = (Guard*)mem;
|
|
222
|
+
guard--;
|
|
223
|
+
|
|
224
|
+
malloc_count--;
|
|
225
|
+
UNITY_FIXTURE_FREE(guard);
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
void unity_free(void * mem)
|
|
229
|
+
{
|
|
230
|
+
int overrun;
|
|
231
|
+
|
|
232
|
+
if (mem == NULL)
|
|
233
|
+
{
|
|
234
|
+
return;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
overrun = isOverrun(mem);//strcmp(&memAsChar[guard->size], end) != 0;
|
|
238
|
+
release_memory(mem);
|
|
239
|
+
if (overrun)
|
|
240
|
+
{
|
|
241
|
+
TEST_FAIL_MESSAGE("Buffer overrun detected during free()");
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
void* unity_calloc(size_t num, size_t size)
|
|
246
|
+
{
|
|
247
|
+
void* mem = unity_malloc(num * size);
|
|
248
|
+
memset(mem, 0, num*size);
|
|
249
|
+
return mem;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
void* unity_realloc(void * oldMem, size_t size)
|
|
253
|
+
{
|
|
254
|
+
Guard* guard = (Guard*)oldMem;
|
|
255
|
+
// char* memAsChar = (char*)oldMem;
|
|
256
|
+
void* newMem;
|
|
257
|
+
|
|
258
|
+
if (oldMem == 0)
|
|
259
|
+
return unity_malloc(size);
|
|
260
|
+
|
|
261
|
+
guard--;
|
|
262
|
+
if (isOverrun(oldMem))
|
|
263
|
+
{
|
|
264
|
+
release_memory(oldMem);
|
|
265
|
+
TEST_FAIL_MESSAGE("Buffer overrun detected during realloc()");
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
if (size == 0)
|
|
269
|
+
{
|
|
270
|
+
release_memory(oldMem);
|
|
271
|
+
return 0;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
if (guard->size >= size)
|
|
275
|
+
return oldMem;
|
|
276
|
+
|
|
277
|
+
newMem = unity_malloc(size);
|
|
278
|
+
memcpy(newMem, oldMem, guard->size);
|
|
279
|
+
unity_free(oldMem);
|
|
280
|
+
return newMem;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
//--------------------------------------------------------
|
|
285
|
+
//Automatic pointer restoration functions
|
|
286
|
+
typedef struct _PointerPair
|
|
287
|
+
{
|
|
288
|
+
struct _PointerPair * next;
|
|
289
|
+
void ** pointer;
|
|
290
|
+
void * old_value;
|
|
291
|
+
} PointerPair;
|
|
292
|
+
|
|
293
|
+
enum {MAX_POINTERS=50};
|
|
294
|
+
static PointerPair pointer_store[MAX_POINTERS+1];
|
|
295
|
+
static int pointer_index = 0;
|
|
296
|
+
|
|
297
|
+
void UnityPointer_Init(void)
|
|
298
|
+
{
|
|
299
|
+
pointer_index = 0;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
void UnityPointer_Set(void ** pointer, void * newValue)
|
|
303
|
+
{
|
|
304
|
+
if (pointer_index >= MAX_POINTERS)
|
|
305
|
+
{
|
|
306
|
+
TEST_FAIL_MESSAGE("Too many pointers set");
|
|
307
|
+
}
|
|
308
|
+
else
|
|
309
|
+
{
|
|
310
|
+
pointer_store[pointer_index].pointer = pointer;
|
|
311
|
+
pointer_store[pointer_index].old_value = *pointer;
|
|
312
|
+
*pointer = newValue;
|
|
313
|
+
pointer_index++;
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
void UnityPointer_UndoAllSets(void)
|
|
318
|
+
{
|
|
319
|
+
while (pointer_index > 0)
|
|
320
|
+
{
|
|
321
|
+
pointer_index--;
|
|
322
|
+
*(pointer_store[pointer_index].pointer) =
|
|
323
|
+
pointer_store[pointer_index].old_value;
|
|
324
|
+
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
UNITY_COUNTER_TYPE UnityFailureCount(void)
|
|
329
|
+
{
|
|
330
|
+
return Unity.TestFailures;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
UNITY_COUNTER_TYPE UnityIgnoreCount(void)
|
|
334
|
+
{
|
|
335
|
+
return Unity.TestIgnores;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
UNITY_COUNTER_TYPE UnityTestsCount(void)
|
|
339
|
+
{
|
|
340
|
+
return Unity.NumberOfTests;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
int UnityGetCommandLineOptions(int argc, const char* argv[])
|
|
344
|
+
{
|
|
345
|
+
int i;
|
|
346
|
+
UnityFixture.Verbose = 0;
|
|
347
|
+
UnityFixture.GroupFilter = 0;
|
|
348
|
+
UnityFixture.NameFilter = 0;
|
|
349
|
+
UnityFixture.RepeatCount = 1;
|
|
350
|
+
|
|
351
|
+
if (argc == 1)
|
|
352
|
+
return 0;
|
|
353
|
+
|
|
354
|
+
for (i = 1; i < argc; )
|
|
355
|
+
{
|
|
356
|
+
if (strcmp(argv[i], "-v") == 0)
|
|
357
|
+
{
|
|
358
|
+
UnityFixture.Verbose = 1;
|
|
359
|
+
i++;
|
|
360
|
+
}
|
|
361
|
+
else if (strcmp(argv[i], "-g") == 0)
|
|
362
|
+
{
|
|
363
|
+
i++;
|
|
364
|
+
if (i >= argc)
|
|
365
|
+
return 1;
|
|
366
|
+
UnityFixture.GroupFilter = argv[i];
|
|
367
|
+
i++;
|
|
368
|
+
}
|
|
369
|
+
else if (strcmp(argv[i], "-n") == 0)
|
|
370
|
+
{
|
|
371
|
+
i++;
|
|
372
|
+
if (i >= argc)
|
|
373
|
+
return 1;
|
|
374
|
+
UnityFixture.NameFilter = argv[i];
|
|
375
|
+
i++;
|
|
376
|
+
}
|
|
377
|
+
else if (strcmp(argv[i], "-r") == 0)
|
|
378
|
+
{
|
|
379
|
+
UnityFixture.RepeatCount = 2;
|
|
380
|
+
i++;
|
|
381
|
+
if (i < argc)
|
|
382
|
+
{
|
|
383
|
+
if (*(argv[i]) >= '0' && *(argv[i]) <= '9')
|
|
384
|
+
{
|
|
385
|
+
UnityFixture.RepeatCount = atoi(argv[i]);
|
|
386
|
+
i++;
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
} else {
|
|
390
|
+
// ignore unknown parameter
|
|
391
|
+
i++;
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
return 0;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
void UnityConcludeFixtureTest(void)
|
|
398
|
+
{
|
|
399
|
+
if (Unity.CurrentTestIgnored)
|
|
400
|
+
{
|
|
401
|
+
if (UnityFixture.Verbose)
|
|
402
|
+
{
|
|
403
|
+
UNITY_PRINT_EOL();
|
|
404
|
+
}
|
|
405
|
+
Unity.TestIgnores++;
|
|
406
|
+
}
|
|
407
|
+
else if (!Unity.CurrentTestFailed)
|
|
408
|
+
{
|
|
409
|
+
if (UnityFixture.Verbose)
|
|
410
|
+
{
|
|
411
|
+
UnityPrint(" PASS");
|
|
412
|
+
UNITY_PRINT_EOL();
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
else if (Unity.CurrentTestFailed)
|
|
416
|
+
{
|
|
417
|
+
Unity.TestFailures++;
|
|
418
|
+
UNITY_PRINT_EOL();
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
Unity.CurrentTestFailed = 0;
|
|
422
|
+
Unity.CurrentTestIgnored = 0;
|
|
423
|
+
}
|