ceedling 0.13.0.rc1 → 0.13.0
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile.lock +32 -0
- data/README.md +8 -8
- data/assets/example_file.c +5 -0
- data/assets/example_file.h +6 -0
- data/assets/project_as_gem.yml +71 -0
- data/assets/{project.yml → project_with_guts.yml} +2 -0
- data/assets/rakefile_as_gem.rb +1 -0
- data/assets/{rakefile.rb → rakefile_with_guts.rb} +0 -0
- data/assets/test_example_file.c +13 -0
- data/bin/ceedling +55 -31
- data/ceedling-0.13.0.rc4.gem +0 -0
- data/ceedling.gemspec +13 -12
- data/ceedling.sublime-project +8 -0
- data/ceedling.sublime-workspace +365 -0
- data/examples/temp_sensor/project.yml +3 -4
- data/lib/ceedling.rb +13 -4
- data/lib/ceedling/version.rb +3 -3
- data/lib/project_file_loader.rb +1 -1
- data/lib/rakefile.rb +14 -1
- data/lib/target_loader.rb +38 -0
- data/plugins/bullseye/{template.erb → assets/template.erb} +0 -0
- data/plugins/bullseye/{defaults.yml → config/defaults.yml} +0 -0
- data/plugins/bullseye/{bullseye.rb → lib/bullseye.rb} +9 -10
- data/spec/spec_system_helper.rb +192 -0
- data/spec/system/deployment_spec.rb +116 -0
- data/tags +977 -0
- data/vendor/c_exception/docs/CExceptionSummary.odt +0 -0
- data/vendor/c_exception/docs/CExceptionSummary.pdf +0 -0
- data/vendor/c_exception/docs/license.txt +30 -0
- data/vendor/c_exception/docs/readme.txt +242 -0
- data/vendor/c_exception/makefile +24 -0
- data/vendor/c_exception/rakefile.rb +41 -0
- data/vendor/c_exception/test/CExceptionConfig.h +44 -0
- data/vendor/c_exception/test/TestException.c +328 -0
- data/vendor/c_exception/test/TestException_Runner.c +57 -0
- data/vendor/c_exception/vendor/unity/auto/colour_prompt.rb +94 -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 +313 -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 +217 -0
- data/vendor/c_exception/vendor/unity/docs/license.txt +31 -0
- data/vendor/c_exception/vendor/unity/examples/helper/UnityHelper.c +10 -0
- data/vendor/c_exception/vendor/unity/examples/helper/UnityHelper.h +12 -0
- data/vendor/c_exception/vendor/unity/examples/makefile +40 -0
- data/vendor/c_exception/vendor/unity/examples/rakefile.rb +32 -0
- data/vendor/c_exception/vendor/unity/examples/rakefile_helper.rb +256 -0
- data/vendor/c_exception/vendor/unity/examples/readme.txt +18 -0
- data/vendor/c_exception/vendor/unity/examples/src/ProductionCode.c +24 -0
- data/vendor/c_exception/vendor/unity/examples/src/ProductionCode.h +3 -0
- data/vendor/c_exception/vendor/unity/examples/src/ProductionCode2.c +9 -0
- data/vendor/c_exception/vendor/unity/examples/src/ProductionCode2.h +2 -0
- data/vendor/c_exception/vendor/unity/examples/test/TestProductionCode.c +62 -0
- data/vendor/c_exception/vendor/unity/examples/test/TestProductionCode2.c +31 -0
- data/vendor/c_exception/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +46 -0
- data/vendor/c_exception/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +50 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/build/MakefileWorker.mk +331 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/build/filterGcov.sh +61 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/rakefile.rb +37 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/rakefile_helper.rb +178 -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 +381 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.h +81 -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 +321 -0
- data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +40 -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 +35 -0
- data/vendor/c_exception/vendor/unity/rakefile.rb +59 -0
- data/vendor/c_exception/vendor/unity/rakefile_helper.rb +240 -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 +979 -0
- data/vendor/c_exception/vendor/unity/src/unity.h +232 -0
- data/vendor/c_exception/vendor/unity/src/unity_internals.h +424 -0
- data/vendor/c_exception/vendor/unity/targets/gcc.yml +43 -0
- data/vendor/c_exception/vendor/unity/targets/gcc_64.yml +44 -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 +54 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_def.c +50 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_cmd.c +76 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_def.c +72 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new1.c +85 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new2.c +85 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_param.c +73 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run1.c +85 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run2.c +85 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_yaml.c +86 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_new1.c +60 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_new2.c +63 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_param.c +51 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_run1.c +60 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_run2.c +63 -0
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_yaml.c +64 -0
- data/vendor/c_exception/vendor/unity/test/test_generate_test_runner.rb +94 -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 +2024 -0
- data/vendor/cmock/docs/CMock Summary.odt +0 -0
- data/vendor/cmock/docs/CMock Summary.pdf +0 -0
- data/vendor/cmock/docs/CMock_Summary.md +356 -0
- data/vendor/cmock/docs/license.txt +31 -0
- data/vendor/cmock/examples/gcc.yml +43 -0
- data/vendor/cmock/examples/iar_v4.yml +91 -0
- data/vendor/cmock/examples/iar_v5.yml +80 -0
- data/vendor/cmock/examples/rakefile.rb +32 -0
- data/vendor/cmock/examples/rakefile_helper.rb +270 -0
- data/vendor/cmock/examples/src/AT91SAM7X256.h +2556 -0
- data/vendor/cmock/examples/src/AdcConductor.c +42 -0
- data/vendor/cmock/examples/src/AdcConductor.h +11 -0
- data/vendor/cmock/examples/src/AdcHardware.c +27 -0
- data/vendor/cmock/examples/src/AdcHardware.h +9 -0
- data/vendor/cmock/examples/src/AdcHardwareConfigurator.c +18 -0
- data/vendor/cmock/examples/src/AdcHardwareConfigurator.h +10 -0
- data/vendor/cmock/examples/src/AdcModel.c +33 -0
- data/vendor/cmock/examples/src/AdcModel.h +13 -0
- data/vendor/cmock/examples/src/AdcTemperatureSensor.c +51 -0
- data/vendor/cmock/examples/src/AdcTemperatureSensor.h +10 -0
- data/vendor/cmock/examples/src/Executor.c +25 -0
- data/vendor/cmock/examples/src/Executor.h +9 -0
- data/vendor/cmock/examples/src/IntrinsicsWrapper.c +18 -0
- data/vendor/cmock/examples/src/IntrinsicsWrapper.h +7 -0
- data/vendor/cmock/examples/src/Main.c +46 -0
- data/vendor/cmock/examples/src/Main.h +7 -0
- data/vendor/cmock/examples/src/Model.c +10 -0
- data/vendor/cmock/examples/src/Model.h +8 -0
- data/vendor/cmock/examples/src/ModelConfig.h +7 -0
- data/vendor/cmock/examples/src/TaskScheduler.c +72 -0
- data/vendor/cmock/examples/src/TaskScheduler.h +11 -0
- data/vendor/cmock/examples/src/TemperatureCalculator.c +27 -0
- data/vendor/cmock/examples/src/TemperatureCalculator.h +6 -0
- data/vendor/cmock/examples/src/TemperatureFilter.c +39 -0
- data/vendor/cmock/examples/src/TemperatureFilter.h +10 -0
- data/vendor/cmock/examples/src/TimerConductor.c +15 -0
- data/vendor/cmock/examples/src/TimerConductor.h +9 -0
- data/vendor/cmock/examples/src/TimerConfigurator.c +51 -0
- data/vendor/cmock/examples/src/TimerConfigurator.h +15 -0
- data/vendor/cmock/examples/src/TimerHardware.c +15 -0
- data/vendor/cmock/examples/src/TimerHardware.h +8 -0
- data/vendor/cmock/examples/src/TimerInterruptConfigurator.c +55 -0
- data/vendor/cmock/examples/src/TimerInterruptConfigurator.h +13 -0
- data/vendor/cmock/examples/src/TimerInterruptHandler.c +25 -0
- data/vendor/cmock/examples/src/TimerInterruptHandler.h +10 -0
- data/vendor/cmock/examples/src/TimerModel.c +9 -0
- data/vendor/cmock/examples/src/TimerModel.h +8 -0
- data/vendor/cmock/examples/src/Types.h +103 -0
- data/vendor/cmock/examples/src/UsartBaudRateRegisterCalculator.c +18 -0
- data/vendor/cmock/examples/src/UsartBaudRateRegisterCalculator.h +6 -0
- data/vendor/cmock/examples/src/UsartConductor.c +21 -0
- data/vendor/cmock/examples/src/UsartConductor.h +7 -0
- data/vendor/cmock/examples/src/UsartConfigurator.c +39 -0
- data/vendor/cmock/examples/src/UsartConfigurator.h +13 -0
- data/vendor/cmock/examples/src/UsartHardware.c +22 -0
- data/vendor/cmock/examples/src/UsartHardware.h +9 -0
- data/vendor/cmock/examples/src/UsartModel.c +34 -0
- data/vendor/cmock/examples/src/UsartModel.h +10 -0
- data/vendor/cmock/examples/src/UsartPutChar.c +16 -0
- data/vendor/cmock/examples/src/UsartPutChar.h +8 -0
- data/vendor/cmock/examples/src/UsartTransmitBufferStatus.c +7 -0
- data/vendor/cmock/examples/src/UsartTransmitBufferStatus.h +8 -0
- data/vendor/cmock/examples/test/TestAdcConductor.c +121 -0
- data/vendor/cmock/examples/test/TestAdcHardware.c +44 -0
- data/vendor/cmock/examples/test/TestAdcHardwareConfigurator.c +43 -0
- data/vendor/cmock/examples/test/TestAdcModel.c +33 -0
- data/vendor/cmock/examples/test/TestAdcTemperatureSensor.c +47 -0
- data/vendor/cmock/examples/test/TestExecutor.c +36 -0
- data/vendor/cmock/examples/test/TestMain.c +24 -0
- data/vendor/cmock/examples/test/TestModel.c +20 -0
- data/vendor/cmock/examples/test/TestTaskScheduler.c +104 -0
- data/vendor/cmock/examples/test/TestTemperatureCalculator.c +33 -0
- data/vendor/cmock/examples/test/TestTemperatureFilter.c +69 -0
- data/vendor/cmock/examples/test/TestTimerConductor.c +32 -0
- data/vendor/cmock/examples/test/TestTimerConfigurator.c +112 -0
- data/vendor/cmock/examples/test/TestTimerHardware.c +26 -0
- data/vendor/cmock/examples/test/TestTimerInterruptConfigurator.c +78 -0
- data/vendor/cmock/examples/test/TestTimerInterruptHandler.c +66 -0
- data/vendor/cmock/examples/test/TestTimerModel.c +18 -0
- data/vendor/cmock/examples/test/TestUsartBaudRateRegisterCalculator.c +21 -0
- data/vendor/cmock/examples/test/TestUsartConductor.c +40 -0
- data/vendor/cmock/examples/test/TestUsartConfigurator.c +77 -0
- data/vendor/cmock/examples/test/TestUsartHardware.c +37 -0
- data/vendor/cmock/examples/test/TestUsartModel.c +40 -0
- data/vendor/cmock/examples/test/TestUsartPutChar.c +43 -0
- data/vendor/cmock/examples/test/TestUsartTransmitBufferStatus.c +22 -0
- data/vendor/cmock/iar/iar_v4/Resource/SAM7_FLASH.mac +71 -0
- data/vendor/cmock/iar/iar_v4/Resource/SAM7_RAM.mac +94 -0
- data/vendor/cmock/iar/iar_v4/Resource/SAM7_SIM.mac +67 -0
- data/vendor/cmock/iar/iar_v4/Resource/at91SAM7X256_FLASH.xcl +185 -0
- data/vendor/cmock/iar/iar_v4/Resource/at91SAM7X256_RAM.xcl +185 -0
- data/vendor/cmock/iar/iar_v4/Resource/ioat91sam7x256.ddf +2259 -0
- data/vendor/cmock/iar/iar_v4/cmock_demo.dep +3691 -0
- data/vendor/cmock/iar/iar_v4/cmock_demo.ewd +1696 -0
- data/vendor/cmock/iar/iar_v4/cmock_demo.ewp +2581 -0
- data/vendor/cmock/iar/iar_v4/cmock_demo.eww +10 -0
- data/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X-EK.h +61 -0
- data/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.inc +2314 -0
- data/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.rdf +4704 -0
- data/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.tcl +3407 -0
- data/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256_inc.h +2268 -0
- data/vendor/cmock/iar/iar_v4/incIAR/ioat91sam7x256.h +4380 -0
- data/vendor/cmock/iar/iar_v4/incIAR/lib_AT91SAM7X256.h +4211 -0
- data/vendor/cmock/iar/iar_v4/settings/cmock_demo.cspy.bat +32 -0
- data/vendor/cmock/iar/iar_v4/settings/cmock_demo.dbgdt +86 -0
- data/vendor/cmock/iar/iar_v4/settings/cmock_demo.dni +42 -0
- data/vendor/cmock/iar/iar_v4/settings/cmock_demo.wsdt +76 -0
- data/vendor/cmock/iar/iar_v4/srcIAR/Cstartup.s79 +266 -0
- data/vendor/cmock/iar/iar_v4/srcIAR/Cstartup_SAM7.c +98 -0
- data/vendor/cmock/iar/iar_v5/Resource/SAM7_FLASH.mac +71 -0
- data/vendor/cmock/iar/iar_v5/Resource/SAM7_RAM.mac +94 -0
- data/vendor/cmock/iar/iar_v5/Resource/SAM7_SIM.mac +67 -0
- data/vendor/cmock/iar/iar_v5/Resource/at91SAM7X256_FLASH.icf +43 -0
- data/vendor/cmock/iar/iar_v5/Resource/at91SAM7X256_RAM.icf +42 -0
- data/vendor/cmock/iar/iar_v5/cmock_demo.dep +4204 -0
- data/vendor/cmock/iar/iar_v5/cmock_demo.ewd +1906 -0
- data/vendor/cmock/iar/iar_v5/cmock_demo.ewp +2426 -0
- data/vendor/cmock/iar/iar_v5/cmock_demo.eww +26 -0
- data/vendor/cmock/iar/iar_v5/incIAR/AT91SAM7X-EK.h +61 -0
- data/vendor/cmock/iar/iar_v5/incIAR/AT91SAM7X256_inc.h +2268 -0
- data/vendor/cmock/iar/iar_v5/incIAR/lib_AT91SAM7X256.h +4211 -0
- data/vendor/cmock/iar/iar_v5/incIAR/project.h +30 -0
- data/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.cspy.bat +33 -0
- data/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.dbgdt +5 -0
- data/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.dni +18 -0
- data/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.wsdt +74 -0
- data/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X_FLASH_Debug.jlink +12 -0
- data/vendor/cmock/iar/iar_v5/settings/cmock_demo.cspy.bat +33 -0
- data/vendor/cmock/iar/iar_v5/settings/cmock_demo.dbgdt +85 -0
- data/vendor/cmock/iar/iar_v5/settings/cmock_demo.dni +44 -0
- data/vendor/cmock/iar/iar_v5/settings/cmock_demo.wsdt +73 -0
- data/vendor/cmock/iar/iar_v5/settings/cmock_demo_Binary.jlink +12 -0
- data/vendor/cmock/iar/iar_v5/settings/cmock_demo_FLASH_Debug.jlink +12 -0
- data/vendor/cmock/iar/iar_v5/settings/cmock_demo_RAM_Debug.jlink +12 -0
- data/vendor/cmock/iar/iar_v5/srcIAR/Cstartup.s +299 -0
- data/vendor/cmock/iar/iar_v5/srcIAR/Cstartup_SAM7.c +98 -0
- data/vendor/cmock/rakefile.rb +111 -0
- data/vendor/cmock/rakefile_helper.rb +381 -0
- data/vendor/cmock/targets/gcc.yml +53 -0
- data/vendor/cmock/targets/iar_arm_v4.yml +108 -0
- data/vendor/cmock/targets/iar_arm_v5.yml +93 -0
- data/vendor/cmock/test/c/TestCMockC.c +280 -0
- data/vendor/cmock/test/c/TestCMockC.yml +12 -0
- data/vendor/cmock/test/c/TestCMockCDynamic.c +186 -0
- data/vendor/cmock/test/c/TestCMockCDynamic.yml +12 -0
- data/vendor/cmock/test/c/TestCMockCDynamic_Runner.c +35 -0
- data/vendor/cmock/test/c/TestCMockC_Runner.c +37 -0
- data/vendor/cmock/test/spec/cmock_file_writer_spec.rb +25 -0
- data/vendor/cmock/test/spec/spec_helper.rb +12 -0
- data/vendor/cmock/test/system/systest_generator.rb +178 -0
- data/vendor/cmock/test/system/test_compilation/callingconv.h +11 -0
- data/vendor/cmock/test/system/test_compilation/config.yml +9 -0
- data/vendor/cmock/test/system/test_compilation/const.h +15 -0
- data/vendor/cmock/test/system/test_compilation/osek.h +275 -0
- data/vendor/cmock/test/system/test_compilation/parsing.h +47 -0
- data/vendor/cmock/test/system/test_interactions/all_plugins_but_other_limits.yml +341 -0
- data/vendor/cmock/test/system/test_interactions/all_plugins_coexist.yml +382 -0
- data/vendor/cmock/test/system/test_interactions/array_and_pointer_handling.yml +382 -0
- data/vendor/cmock/test/system/test_interactions/basic_expect_and_return.yml +123 -0
- data/vendor/cmock/test/system/test_interactions/const_primitives_handling.yml +87 -0
- data/vendor/cmock/test/system/test_interactions/enforce_strict_ordering.yml +247 -0
- data/vendor/cmock/test/system/test_interactions/expect_and_return_custom_types.yml +108 -0
- data/vendor/cmock/test/system/test_interactions/expect_and_return_treat_as.yml +173 -0
- data/vendor/cmock/test/system/test_interactions/expect_and_throw.yml +170 -0
- data/vendor/cmock/test/system/test_interactions/fancy_pointer_handling.yml +208 -0
- data/vendor/cmock/test/system/test_interactions/function_pointer_handling.yml +82 -0
- data/vendor/cmock/test/system/test_interactions/ignore_and_return.yml +153 -0
- data/vendor/cmock/test/system/test_interactions/newer_standards_stuff1.yml +52 -0
- data/vendor/cmock/test/system/test_interactions/nonstandard_parsed_stuff_1.yml +91 -0
- data/vendor/cmock/test/system/test_interactions/nonstandard_parsed_stuff_2.yml +59 -0
- data/vendor/cmock/test/system/test_interactions/parsing_challenges.yml +222 -0
- data/vendor/cmock/test/system/test_interactions/struct_union_enum_expect_and_return.yml +277 -0
- data/vendor/cmock/test/system/test_interactions/stubs_with_callbacks.yml +221 -0
- data/vendor/cmock/test/system/test_interactions/unity_64bit_support.yml +77 -0
- data/vendor/cmock/test/system/test_interactions/unity_ignores.yml +139 -0
- data/vendor/cmock/test/test_helper.rb +44 -0
- data/vendor/cmock/test/unit/cmock_config_test.rb +121 -0
- data/vendor/cmock/test/unit/cmock_config_test.yml +5 -0
- data/vendor/cmock/test/unit/cmock_file_writer_test.rb +30 -0
- data/vendor/cmock/test/unit/cmock_generator_main_test.rb +413 -0
- data/vendor/cmock/test/unit/cmock_generator_plugin_array_test.rb +114 -0
- data/vendor/cmock/test/unit/cmock_generator_plugin_callback_test.rb +190 -0
- data/vendor/cmock/test/unit/cmock_generator_plugin_cexception_test.rb +94 -0
- data/vendor/cmock/test/unit/cmock_generator_plugin_expect_test.rb +206 -0
- data/vendor/cmock/test/unit/cmock_generator_plugin_ignore_test.rb +168 -0
- data/vendor/cmock/test/unit/cmock_generator_utils_test.rb +291 -0
- data/vendor/cmock/test/unit/cmock_header_parser_test.rb +1247 -0
- data/vendor/cmock/test/unit/cmock_plugin_manager_test.rb +85 -0
- data/vendor/cmock/test/unit/cmock_unityhelper_parser_test.rb +223 -0
- data/vendor/cmock/vendor/behaviors/Manifest.txt +9 -0
- data/vendor/cmock/vendor/behaviors/Rakefile +19 -0
- data/vendor/cmock/vendor/behaviors/lib/behaviors.rb +76 -0
- data/vendor/cmock/vendor/behaviors/lib/behaviors/reporttask.rb +158 -0
- data/vendor/cmock/vendor/behaviors/test/behaviors_tasks_test.rb +73 -0
- data/vendor/cmock/vendor/behaviors/test/behaviors_test.rb +50 -0
- data/vendor/cmock/vendor/behaviors/test/tasks_test/Rakefile +19 -0
- data/vendor/cmock/vendor/behaviors/test/tasks_test/lib/user.rb +2 -0
- data/vendor/cmock/vendor/behaviors/test/tasks_test/test/user_test.rb +17 -0
- data/vendor/cmock/vendor/hardmock/CHANGES +78 -0
- data/vendor/cmock/vendor/hardmock/LICENSE +7 -0
- data/vendor/cmock/vendor/hardmock/README +70 -0
- data/vendor/cmock/vendor/hardmock/Rakefile +8 -0
- data/vendor/cmock/vendor/hardmock/config/environment.rb +12 -0
- data/vendor/cmock/vendor/hardmock/lib/assert_error.rb +23 -0
- data/vendor/cmock/vendor/hardmock/lib/extend_test_unit.rb +14 -0
- data/vendor/cmock/vendor/hardmock/lib/hardmock.rb +86 -0
- data/vendor/cmock/vendor/hardmock/lib/hardmock/errors.rb +22 -0
- data/vendor/cmock/vendor/hardmock/lib/hardmock/expectation.rb +229 -0
- data/vendor/cmock/vendor/hardmock/lib/hardmock/expectation_builder.rb +9 -0
- data/vendor/cmock/vendor/hardmock/lib/hardmock/expector.rb +26 -0
- data/vendor/cmock/vendor/hardmock/lib/hardmock/method_cleanout.rb +33 -0
- data/vendor/cmock/vendor/hardmock/lib/hardmock/mock.rb +180 -0
- data/vendor/cmock/vendor/hardmock/lib/hardmock/mock_control.rb +53 -0
- data/vendor/cmock/vendor/hardmock/lib/hardmock/stubbing.rb +210 -0
- data/vendor/cmock/vendor/hardmock/lib/hardmock/trapper.rb +31 -0
- data/vendor/cmock/vendor/hardmock/lib/hardmock/utils.rb +9 -0
- data/vendor/cmock/vendor/hardmock/lib/test_unit_before_after.rb +169 -0
- data/vendor/cmock/vendor/hardmock/rake_tasks/rdoc.rake +19 -0
- data/vendor/cmock/vendor/hardmock/rake_tasks/rdoc_options.rb +4 -0
- data/vendor/cmock/vendor/hardmock/rake_tasks/test.rake +22 -0
- data/vendor/cmock/vendor/hardmock/test/functional/assert_error_test.rb +52 -0
- data/vendor/cmock/vendor/hardmock/test/functional/auto_verify_test.rb +178 -0
- data/vendor/cmock/vendor/hardmock/test/functional/direct_mock_usage_test.rb +396 -0
- data/vendor/cmock/vendor/hardmock/test/functional/hardmock_test.rb +434 -0
- data/vendor/cmock/vendor/hardmock/test/functional/stubbing_test.rb +479 -0
- data/vendor/cmock/vendor/hardmock/test/test_helper.rb +43 -0
- data/vendor/cmock/vendor/hardmock/test/unit/expectation_builder_test.rb +19 -0
- data/vendor/cmock/vendor/hardmock/test/unit/expectation_test.rb +372 -0
- data/vendor/cmock/vendor/hardmock/test/unit/expector_test.rb +57 -0
- data/vendor/cmock/vendor/hardmock/test/unit/method_cleanout_test.rb +36 -0
- data/vendor/cmock/vendor/hardmock/test/unit/mock_control_test.rb +175 -0
- data/vendor/cmock/vendor/hardmock/test/unit/mock_test.rb +279 -0
- data/vendor/cmock/vendor/hardmock/test/unit/test_unit_before_after_test.rb +452 -0
- data/vendor/cmock/vendor/hardmock/test/unit/trapper_test.rb +62 -0
- data/vendor/cmock/vendor/hardmock/test/unit/verify_error_test.rb +40 -0
- data/vendor/unity/auto/generate_config.yml +36 -0
- data/vendor/unity/auto/unity_test_summary.rb +2 -2
- 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 +216 -0
- data/vendor/unity/docs/license.txt +31 -0
- data/vendor/unity/examples/helper/UnityHelper.c +10 -0
- data/vendor/unity/examples/helper/UnityHelper.h +12 -0
- data/vendor/unity/examples/makefile +40 -0
- data/vendor/unity/examples/rakefile.rb +32 -0
- data/vendor/unity/examples/rakefile_helper.rb +256 -0
- data/vendor/unity/examples/readme.txt +18 -0
- data/vendor/unity/examples/src/ProductionCode.c +24 -0
- data/vendor/unity/examples/src/ProductionCode.h +3 -0
- data/vendor/unity/examples/src/ProductionCode2.c +9 -0
- data/vendor/unity/examples/src/ProductionCode2.h +2 -0
- data/vendor/unity/examples/test/TestProductionCode.c +62 -0
- data/vendor/unity/examples/test/TestProductionCode2.c +31 -0
- data/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +46 -0
- data/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +50 -0
- data/vendor/unity/extras/fixture/build/MakefileWorker.mk +331 -0
- data/vendor/unity/extras/fixture/build/filterGcov.sh +61 -0
- data/vendor/unity/extras/fixture/rakefile.rb +37 -0
- data/vendor/unity/extras/fixture/rakefile_helper.rb +178 -0
- data/vendor/unity/extras/fixture/readme.txt +9 -0
- data/vendor/unity/extras/fixture/src/unity_fixture.c +381 -0
- data/vendor/unity/extras/fixture/src/unity_fixture.h +81 -0
- data/vendor/unity/extras/fixture/src/unity_fixture_internals.h +44 -0
- data/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +16 -0
- data/vendor/unity/extras/fixture/test/main/AllTests.c +21 -0
- data/vendor/unity/extras/fixture/test/testunity_fixture.c +39 -0
- data/vendor/unity/extras/fixture/test/unity_fixture_Test.c +321 -0
- data/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +40 -0
- data/vendor/unity/extras/fixture/test/unity_output_Spy.c +56 -0
- data/vendor/unity/extras/fixture/test/unity_output_Spy.h +17 -0
- data/vendor/unity/makefile +35 -0
- data/vendor/unity/rakefile.rb +59 -0
- data/vendor/unity/rakefile_helper.rb +240 -0
- data/vendor/unity/release/version.info +1 -1
- data/vendor/unity/src/unity.c +1 -1
- data/vendor/unity/src/unity_internals.h +5 -5
- data/vendor/unity/targets/gcc_32.yml +44 -0
- data/vendor/unity/targets/hitech_picc18.yml +101 -0
- data/vendor/unity/targets/iar_arm_v4.yml +89 -0
- data/vendor/unity/targets/iar_arm_v5.yml +79 -0
- data/vendor/unity/targets/iar_arm_v5_3.yml +79 -0
- data/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +93 -0
- data/vendor/unity/targets/iar_cortexm3_v5.yml +83 -0
- data/vendor/unity/targets/iar_msp430.yml +94 -0
- data/vendor/unity/targets/iar_sh2a_v6.yml +85 -0
- data/vendor/unity/test/expectdata/testsample_cmd.c +54 -0
- data/vendor/unity/test/expectdata/testsample_def.c +50 -0
- data/vendor/unity/test/expectdata/testsample_mock_cmd.c +76 -0
- data/vendor/unity/test/expectdata/testsample_mock_def.c +72 -0
- data/vendor/unity/test/expectdata/testsample_mock_new1.c +85 -0
- data/vendor/unity/test/expectdata/testsample_mock_new2.c +85 -0
- data/vendor/unity/test/expectdata/testsample_mock_param.c +73 -0
- data/vendor/unity/test/expectdata/testsample_mock_run1.c +85 -0
- data/vendor/unity/test/expectdata/testsample_mock_run2.c +85 -0
- data/vendor/unity/test/expectdata/testsample_mock_yaml.c +86 -0
- data/vendor/unity/test/expectdata/testsample_new1.c +60 -0
- data/vendor/unity/test/expectdata/testsample_new2.c +63 -0
- data/vendor/unity/test/expectdata/testsample_param.c +51 -0
- data/vendor/unity/test/expectdata/testsample_run1.c +60 -0
- data/vendor/unity/test/expectdata/testsample_run2.c +63 -0
- data/vendor/unity/test/expectdata/testsample_yaml.c +64 -0
- data/vendor/unity/test/test_generate_test_runner.rb +94 -0
- data/vendor/unity/test/testdata/mocksample.c +51 -0
- data/vendor/unity/test/testdata/sample.yml +9 -0
- data/vendor/unity/test/testdata/testsample.c +51 -0
- data/vendor/unity/test/testparameterized.c +101 -0
- data/vendor/unity/test/testunity.c +2559 -0
- metadata +464 -53
- data/.gitignore +0 -6
- data/.gitmodules +0 -9
- data/.rspec +0 -1
@@ -0,0 +1,61 @@
|
|
1
|
+
#!/bin/bash
|
2
|
+
INPUT_FILE=$1
|
3
|
+
TEMP_FILE1=${INPUT_FILE}1.tmp
|
4
|
+
TEMP_FILE2=${INPUT_FILE}2.tmp
|
5
|
+
TEMP_FILE3=${INPUT_FILE}3.tmp
|
6
|
+
ERROR_FILE=$2
|
7
|
+
OUTPUT_FILE=$3
|
8
|
+
HTML_OUTPUT_FILE=$3.html
|
9
|
+
TEST_RESULTS=$4
|
10
|
+
|
11
|
+
flattenGcovOutput() {
|
12
|
+
while read line1
|
13
|
+
do
|
14
|
+
read line2
|
15
|
+
echo $line2 " " $line1
|
16
|
+
read junk
|
17
|
+
read junk
|
18
|
+
done < ${INPUT_FILE}
|
19
|
+
}
|
20
|
+
|
21
|
+
getRidOfCruft() {
|
22
|
+
sed '-e s/^Lines.*://g' \
|
23
|
+
'-e s/^[0-9]\./ &/g' \
|
24
|
+
'-e s/^[0-9][0-9]\./ &/g' \
|
25
|
+
'-e s/of.*File/ /g' \
|
26
|
+
"-e s/'//g" \
|
27
|
+
'-e s/^.*\/usr\/.*$//g' \
|
28
|
+
'-e s/^.*\.$//g'
|
29
|
+
}
|
30
|
+
|
31
|
+
getFileNameRootFromErrorFile() {
|
32
|
+
sed '-e s/gc..:cannot open .* file//g' ${ERROR_FILE}
|
33
|
+
}
|
34
|
+
|
35
|
+
writeEachNoTestCoverageFile() {
|
36
|
+
while read line
|
37
|
+
do
|
38
|
+
echo " 0.00% " ${line}
|
39
|
+
done
|
40
|
+
}
|
41
|
+
|
42
|
+
createHtmlOutput() {
|
43
|
+
echo "<table border="2" cellspacing="5" cellpadding="5">"
|
44
|
+
echo "<tr><th>Coverage</th><th>File</th></tr>"
|
45
|
+
sed "-e s/.*% /<tr><td>&<\/td><td>/" \
|
46
|
+
"-e s/[a-zA-Z0-9_]*\.[ch][a-z]*/<a href='file:\.\/&.gcov'>&<\/a><\/td><\/tr>/"
|
47
|
+
echo "</table>"
|
48
|
+
sed "-e s/.*/&<br>/g" < ${TEST_RESULTS}
|
49
|
+
}
|
50
|
+
|
51
|
+
|
52
|
+
flattenGcovOutput | getRidOfCruft > ${TEMP_FILE1}
|
53
|
+
getFileNameRootFromErrorFile | writeEachNoTestCoverageFile > ${TEMP_FILE2}
|
54
|
+
cat ${TEMP_FILE1} ${TEMP_FILE2} | sort | uniq > ${OUTPUT_FILE}
|
55
|
+
createHtmlOutput < ${OUTPUT_FILE} > ${HTML_OUTPUT_FILE}
|
56
|
+
rm -f ${TEMP_FILE1} ${TEMP_FILE2}
|
57
|
+
erage</th><th>File</th></tr>"
|
58
|
+
sed "-e s/.*% /<tr><td>&<\/td><td>/" \
|
59
|
+
"-e s/[a-zA-Z0-9_]*\.[ch][a-z]*/<a href='file:\.\/&.gcov'>&<\/a><\/td><\/tr>/"
|
60
|
+
echo "</table>"
|
61
|
+
sed "-e s/.*/&<br>/g" < ${TEST_RESULTS
|
@@ -0,0 +1,37 @@
|
|
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
|
+
include RakefileHelpers
|
15
|
+
|
16
|
+
# Load default configuration, for now
|
17
|
+
DEFAULT_CONFIG_FILE = 'gcc.yml'
|
18
|
+
configure_toolchain(DEFAULT_CONFIG_FILE)
|
19
|
+
|
20
|
+
task :unit do
|
21
|
+
run_tests
|
22
|
+
end
|
23
|
+
|
24
|
+
desc "Build and test Unity Framework"
|
25
|
+
task :all => [:clean, :unit]
|
26
|
+
task :default => [:clobber, :all]
|
27
|
+
task :ci => [:no_color, :default]
|
28
|
+
task :cruise => [:no_color, :default]
|
29
|
+
|
30
|
+
desc "Load configuration"
|
31
|
+
task :config, :config_file do |t, args|
|
32
|
+
configure_toolchain(args[:config_file])
|
33
|
+
end
|
34
|
+
|
35
|
+
task :no_color do
|
36
|
+
$colour_output = false
|
37
|
+
end
|
@@ -0,0 +1,178 @@
|
|
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+"../../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(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 << '../../src/Unity.c'
|
152
|
+
|
153
|
+
# Build object files
|
154
|
+
src_files.each { |f| compile(f, test_defines) }
|
155
|
+
obj_list = src_files.map {|f| File.basename(f.ext($cfg['compiler']['object_files']['extension'])) }
|
156
|
+
|
157
|
+
# Link the test executable
|
158
|
+
test_base = "framework_test"
|
159
|
+
link(test_base, obj_list)
|
160
|
+
|
161
|
+
# Execute unit test and generate results file
|
162
|
+
simulator = build_simulator_fields
|
163
|
+
executable = $cfg['linker']['bin_files']['destination'] + test_base + $cfg['linker']['bin_files']['extension']
|
164
|
+
if simulator.nil?
|
165
|
+
cmd_str = executable + " -v -r"
|
166
|
+
else
|
167
|
+
cmd_str = "#{simulator[:command]} #{simulator[:pre_support]} #{executable} #{simulator[:post_support]}"
|
168
|
+
end
|
169
|
+
output = execute(cmd_str)
|
170
|
+
test_results = $cfg['compiler']['build_path'] + test_base
|
171
|
+
if output.match(/OK$/m).nil?
|
172
|
+
test_results += '.testfail'
|
173
|
+
else
|
174
|
+
test_results += '.testpass'
|
175
|
+
end
|
176
|
+
File.open(test_results, 'w') { |f| f.print output }
|
177
|
+
end
|
178
|
+
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,381 @@
|
|
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_internals.h"
|
10
|
+
#include <string.h>
|
11
|
+
|
12
|
+
UNITY_FIXTURE_T UnityFixture;
|
13
|
+
|
14
|
+
//If you decide to use the function pointer approach.
|
15
|
+
int (*outputChar)(int) = putchar;
|
16
|
+
|
17
|
+
int verbose = 0;
|
18
|
+
|
19
|
+
void setUp(void) { /*does nothing*/ }
|
20
|
+
void tearDown(void) { /*does nothing*/ }
|
21
|
+
|
22
|
+
void announceTestRun(unsigned int runNumber)
|
23
|
+
{
|
24
|
+
UnityPrint("Unity test run ");
|
25
|
+
UnityPrintNumber(runNumber+1);
|
26
|
+
UnityPrint(" of ");
|
27
|
+
UnityPrintNumber(UnityFixture.RepeatCount);
|
28
|
+
UNITY_OUTPUT_CHAR('\n');
|
29
|
+
}
|
30
|
+
|
31
|
+
int UnityMain(int argc, char* argv[], void (*runAllTests)())
|
32
|
+
{
|
33
|
+
int result = UnityGetCommandLineOptions(argc, argv);
|
34
|
+
unsigned int r;
|
35
|
+
if (result != 0)
|
36
|
+
return result;
|
37
|
+
|
38
|
+
for (r = 0; r < UnityFixture.RepeatCount; r++)
|
39
|
+
{
|
40
|
+
announceTestRun(r);
|
41
|
+
UnityBegin();
|
42
|
+
runAllTests();
|
43
|
+
UNITY_OUTPUT_CHAR('\n');
|
44
|
+
UnityEnd();
|
45
|
+
}
|
46
|
+
|
47
|
+
return UnityFailureCount();
|
48
|
+
}
|
49
|
+
|
50
|
+
static int selected(const char * filter, const char * name)
|
51
|
+
{
|
52
|
+
if (filter == 0)
|
53
|
+
return 1;
|
54
|
+
return strstr(name, filter) ? 1 : 0;
|
55
|
+
}
|
56
|
+
|
57
|
+
static int testSelected(const char* test)
|
58
|
+
{
|
59
|
+
return selected(UnityFixture.NameFilter, test);
|
60
|
+
}
|
61
|
+
|
62
|
+
static int groupSelected(const char* group)
|
63
|
+
{
|
64
|
+
return selected(UnityFixture.GroupFilter, group);
|
65
|
+
}
|
66
|
+
|
67
|
+
static void runTestCase()
|
68
|
+
{
|
69
|
+
|
70
|
+
}
|
71
|
+
|
72
|
+
void UnityTestRunner(unityfunction* setup,
|
73
|
+
unityfunction* testBody,
|
74
|
+
unityfunction* teardown,
|
75
|
+
const char * printableName,
|
76
|
+
const char * group,
|
77
|
+
const char * name,
|
78
|
+
const char * file, int line)
|
79
|
+
{
|
80
|
+
if (testSelected(name) && groupSelected(group))
|
81
|
+
{
|
82
|
+
Unity.CurrentTestFailed = 0;
|
83
|
+
Unity.TestFile = file;
|
84
|
+
Unity.CurrentTestName = printableName;
|
85
|
+
Unity.CurrentTestLineNumber = line;
|
86
|
+
if (!UnityFixture.Verbose)
|
87
|
+
UNITY_OUTPUT_CHAR('.');
|
88
|
+
else
|
89
|
+
UnityPrint(printableName);
|
90
|
+
|
91
|
+
Unity.NumberOfTests++;
|
92
|
+
UnityMalloc_StartTest();
|
93
|
+
UnityPointer_Init();
|
94
|
+
|
95
|
+
runTestCase();
|
96
|
+
if (TEST_PROTECT())
|
97
|
+
{
|
98
|
+
setup();
|
99
|
+
testBody();
|
100
|
+
}
|
101
|
+
if (TEST_PROTECT())
|
102
|
+
{
|
103
|
+
teardown();
|
104
|
+
}
|
105
|
+
if (TEST_PROTECT())
|
106
|
+
{
|
107
|
+
UnityPointer_UndoAllSets();
|
108
|
+
if (!Unity.CurrentTestFailed)
|
109
|
+
UnityMalloc_EndTest();
|
110
|
+
UnityConcludeFixtureTest();
|
111
|
+
}
|
112
|
+
else
|
113
|
+
{
|
114
|
+
//aborting - jwg - di i need these for the other TEST_PROTECTS?
|
115
|
+
}
|
116
|
+
}
|
117
|
+
}
|
118
|
+
|
119
|
+
void UnityIgnoreTest()
|
120
|
+
{
|
121
|
+
Unity.NumberOfTests++;
|
122
|
+
Unity.CurrentTestIgnored = 1;
|
123
|
+
UNITY_OUTPUT_CHAR('!');
|
124
|
+
}
|
125
|
+
|
126
|
+
|
127
|
+
//-------------------------------------------------
|
128
|
+
//Malloc and free stuff
|
129
|
+
//
|
130
|
+
#define MALLOC_DONT_FAIL -1
|
131
|
+
static int malloc_count;
|
132
|
+
static int malloc_fail_countdown = MALLOC_DONT_FAIL;
|
133
|
+
|
134
|
+
void UnityMalloc_StartTest()
|
135
|
+
{
|
136
|
+
malloc_count = 0;
|
137
|
+
malloc_fail_countdown = MALLOC_DONT_FAIL;
|
138
|
+
}
|
139
|
+
|
140
|
+
void UnityMalloc_EndTest()
|
141
|
+
{
|
142
|
+
malloc_fail_countdown = MALLOC_DONT_FAIL;
|
143
|
+
if (malloc_count != 0)
|
144
|
+
{
|
145
|
+
TEST_FAIL_MESSAGE("This test leaks!");
|
146
|
+
}
|
147
|
+
}
|
148
|
+
|
149
|
+
void UnityMalloc_MakeMallocFailAfterCount(int countdown)
|
150
|
+
{
|
151
|
+
malloc_fail_countdown = countdown;
|
152
|
+
}
|
153
|
+
|
154
|
+
#ifdef malloc
|
155
|
+
#undef malloc
|
156
|
+
#endif
|
157
|
+
|
158
|
+
#ifdef free
|
159
|
+
#undef free
|
160
|
+
#endif
|
161
|
+
|
162
|
+
#include <stdlib.h>
|
163
|
+
#include <string.h>
|
164
|
+
|
165
|
+
typedef struct GuardBytes
|
166
|
+
{
|
167
|
+
int size;
|
168
|
+
char guard[sizeof(int)];
|
169
|
+
} Guard;
|
170
|
+
|
171
|
+
|
172
|
+
static const char * end = "END";
|
173
|
+
|
174
|
+
void * unity_malloc(size_t size)
|
175
|
+
{
|
176
|
+
char* mem;
|
177
|
+
Guard* guard;
|
178
|
+
|
179
|
+
if (malloc_fail_countdown != MALLOC_DONT_FAIL)
|
180
|
+
{
|
181
|
+
if (malloc_fail_countdown == 0)
|
182
|
+
return 0;
|
183
|
+
malloc_fail_countdown--;
|
184
|
+
}
|
185
|
+
|
186
|
+
malloc_count++;
|
187
|
+
|
188
|
+
guard = (Guard*)malloc(size + sizeof(Guard) + 4);
|
189
|
+
guard->size = size;
|
190
|
+
mem = (char*)&(guard[1]);
|
191
|
+
memcpy(&mem[size], end, strlen(end) + 1);
|
192
|
+
|
193
|
+
return (void*)mem;
|
194
|
+
}
|
195
|
+
|
196
|
+
static int isOverrun(void * mem)
|
197
|
+
{
|
198
|
+
Guard* guard = (Guard*)mem;
|
199
|
+
char* memAsChar = (char*)mem;
|
200
|
+
guard--;
|
201
|
+
|
202
|
+
return strcmp(&memAsChar[guard->size], end) != 0;
|
203
|
+
}
|
204
|
+
|
205
|
+
static void release_memory(void * mem)
|
206
|
+
{
|
207
|
+
Guard* guard = (Guard*)mem;
|
208
|
+
guard--;
|
209
|
+
|
210
|
+
malloc_count--;
|
211
|
+
free(guard);
|
212
|
+
}
|
213
|
+
|
214
|
+
void unity_free(void * mem)
|
215
|
+
{
|
216
|
+
int overrun = isOverrun(mem);//strcmp(&memAsChar[guard->size], end) != 0;
|
217
|
+
release_memory(mem);
|
218
|
+
if (overrun)
|
219
|
+
{
|
220
|
+
TEST_FAIL_MESSAGE("Buffer overrun detected during free()");
|
221
|
+
}
|
222
|
+
}
|
223
|
+
|
224
|
+
void* unity_calloc(size_t num, size_t size)
|
225
|
+
{
|
226
|
+
void* mem = unity_malloc(num * size);
|
227
|
+
memset(mem, 0, num*size);
|
228
|
+
return mem;
|
229
|
+
}
|
230
|
+
|
231
|
+
void* unity_realloc(void * oldMem, size_t size)
|
232
|
+
{
|
233
|
+
Guard* guard = (Guard*)oldMem;
|
234
|
+
// char* memAsChar = (char*)oldMem;
|
235
|
+
void* newMem;
|
236
|
+
|
237
|
+
if (oldMem == 0)
|
238
|
+
return unity_malloc(size);
|
239
|
+
|
240
|
+
guard--;
|
241
|
+
if (isOverrun(oldMem))
|
242
|
+
{
|
243
|
+
release_memory(oldMem);
|
244
|
+
TEST_FAIL_MESSAGE("Buffer overrun detected during realloc()");
|
245
|
+
}
|
246
|
+
|
247
|
+
if (size == 0)
|
248
|
+
{
|
249
|
+
release_memory(oldMem);
|
250
|
+
return 0;
|
251
|
+
}
|
252
|
+
|
253
|
+
if (guard->size >= size)
|
254
|
+
return oldMem;
|
255
|
+
|
256
|
+
newMem = unity_malloc(size);
|
257
|
+
memcpy(newMem, oldMem, size);
|
258
|
+
unity_free(oldMem);
|
259
|
+
return newMem;
|
260
|
+
}
|
261
|
+
|
262
|
+
|
263
|
+
//--------------------------------------------------------
|
264
|
+
//Automatic pointer restoration functions
|
265
|
+
typedef struct _PointerPair
|
266
|
+
{
|
267
|
+
struct _PointerPair * next;
|
268
|
+
void ** pointer;
|
269
|
+
void * old_value;
|
270
|
+
} PointerPair;
|
271
|
+
|
272
|
+
enum {MAX_POINTERS=50};
|
273
|
+
static PointerPair pointer_store[MAX_POINTERS];
|
274
|
+
static int pointer_index = 0;
|
275
|
+
|
276
|
+
void UnityPointer_Init()
|
277
|
+
{
|
278
|
+
pointer_index = 0;
|
279
|
+
}
|
280
|
+
|
281
|
+
void UnityPointer_Set(void ** pointer, void * newValue)
|
282
|
+
{
|
283
|
+
if (pointer_index >= MAX_POINTERS)
|
284
|
+
TEST_FAIL_MESSAGE("Too many pointers set");
|
285
|
+
|
286
|
+
pointer_store[pointer_index].pointer = pointer;
|
287
|
+
pointer_store[pointer_index].old_value = *pointer;
|
288
|
+
*pointer = newValue;
|
289
|
+
pointer_index++;
|
290
|
+
}
|
291
|
+
|
292
|
+
void UnityPointer_UndoAllSets()
|
293
|
+
{
|
294
|
+
while (pointer_index > 0)
|
295
|
+
{
|
296
|
+
pointer_index--;
|
297
|
+
*(pointer_store[pointer_index].pointer) =
|
298
|
+
pointer_store[pointer_index].old_value;
|
299
|
+
|
300
|
+
}
|
301
|
+
}
|
302
|
+
|
303
|
+
int UnityFailureCount()
|
304
|
+
{
|
305
|
+
return Unity.TestFailures;
|
306
|
+
}
|
307
|
+
|
308
|
+
int UnityGetCommandLineOptions(int argc, char* argv[])
|
309
|
+
{
|
310
|
+
int i;
|
311
|
+
UnityFixture.Verbose = 0;
|
312
|
+
UnityFixture.GroupFilter = 0;
|
313
|
+
UnityFixture.NameFilter = 0;
|
314
|
+
UnityFixture.RepeatCount = 1;
|
315
|
+
|
316
|
+
if (argc == 1)
|
317
|
+
return 0;
|
318
|
+
|
319
|
+
for (i = 1; i < argc; )
|
320
|
+
{
|
321
|
+
if (strcmp(argv[i], "-v") == 0)
|
322
|
+
{
|
323
|
+
UnityFixture.Verbose = 1;
|
324
|
+
i++;
|
325
|
+
}
|
326
|
+
else if (strcmp(argv[i], "-g") == 0)
|
327
|
+
{
|
328
|
+
i++;
|
329
|
+
if (i >= argc)
|
330
|
+
return 1;
|
331
|
+
UnityFixture.GroupFilter = argv[i];
|
332
|
+
i++;
|
333
|
+
}
|
334
|
+
else if (strcmp(argv[i], "-n") == 0)
|
335
|
+
{
|
336
|
+
i++;
|
337
|
+
if (i >= argc)
|
338
|
+
return 1;
|
339
|
+
UnityFixture.NameFilter = argv[i];
|
340
|
+
i++;
|
341
|
+
}
|
342
|
+
else if (strcmp(argv[i], "-r") == 0)
|
343
|
+
{
|
344
|
+
UnityFixture.RepeatCount = 2;
|
345
|
+
i++;
|
346
|
+
if (i < argc)
|
347
|
+
{
|
348
|
+
if (*(argv[i]) >= '0' && *(argv[i]) <= '9')
|
349
|
+
{
|
350
|
+
UnityFixture.RepeatCount = atoi(argv[i]);
|
351
|
+
i++;
|
352
|
+
}
|
353
|
+
}
|
354
|
+
}
|
355
|
+
}
|
356
|
+
return 0;
|
357
|
+
}
|
358
|
+
|
359
|
+
void UnityConcludeFixtureTest()
|
360
|
+
{
|
361
|
+
if (Unity.CurrentTestIgnored)
|
362
|
+
{
|
363
|
+
Unity.TestIgnores++;
|
364
|
+
}
|
365
|
+
else if (!Unity.CurrentTestFailed)
|
366
|
+
{
|
367
|
+
if (UnityFixture.Verbose)
|
368
|
+
{
|
369
|
+
UnityPrint(" PASS");
|
370
|
+
UNITY_OUTPUT_CHAR('\n');
|
371
|
+
}
|
372
|
+
}
|
373
|
+
else if (Unity.CurrentTestFailed)
|
374
|
+
{
|
375
|
+
Unity.TestFailures++;
|
376
|
+
}
|
377
|
+
|
378
|
+
Unity.CurrentTestFailed = 0;
|
379
|
+
Unity.CurrentTestIgnored = 0;
|
380
|
+
}
|
381
|
+
|