ceedling 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +17 -0
- data/bin/ceedling +17 -0
- data/ceedling-gem.sublime-project +442 -0
- data/ceedling.gemspec +2 -1
- data/examples/temp_sensor/project.yml +71 -0
- data/examples/temp_sensor/rakefile.rb +4 -0
- data/{new_project_template/vendor/ceedling/vendor/cmock/examples → examples/temp_sensor}/src/AT91SAM7X256.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/AdcConductor.c +0 -0
- data/{new_project_template/vendor/ceedling/vendor/cmock/examples → examples/temp_sensor}/src/AdcConductor.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/AdcHardware.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/AdcHardware.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/AdcHardwareConfigurator.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/AdcHardwareConfigurator.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/AdcModel.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/AdcModel.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/AdcTemperatureSensor.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/AdcTemperatureSensor.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/Executor.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/Executor.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/IntrinsicsWrapper.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/IntrinsicsWrapper.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/Main.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/Main.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/Model.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/Model.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/ModelConfig.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TaskScheduler.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TaskScheduler.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TemperatureCalculator.c +0 -0
- data/{new_project_template/vendor/ceedling/vendor/cmock/examples → examples/temp_sensor}/src/TemperatureCalculator.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TemperatureFilter.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TemperatureFilter.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TimerConductor.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TimerConductor.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TimerConfigurator.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TimerConfigurator.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TimerHardware.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TimerHardware.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TimerInterruptConfigurator.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TimerInterruptConfigurator.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TimerInterruptHandler.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TimerInterruptHandler.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TimerModel.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TimerModel.h +0 -0
- data/{new_project_template/vendor/ceedling/vendor/cmock/examples → examples/temp_sensor}/src/Types.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/UsartBaudRateRegisterCalculator.c +0 -0
- data/{new_project_template/vendor/ceedling/vendor/cmock/examples → examples/temp_sensor}/src/UsartBaudRateRegisterCalculator.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/UsartConductor.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/UsartConductor.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/UsartConfigurator.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/UsartConfigurator.h +0 -0
- data/examples/temp_sensor/src/UsartGetChar.c +6 -0
- data/examples/temp_sensor/src/UsartGetChar.h +8 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/UsartHardware.c +12 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/UsartHardware.h +1 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/UsartModel.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/UsartModel.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/UsartPutChar.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/UsartPutChar.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/UsartTransmitBufferStatus.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/UsartTransmitBufferStatus.h +0 -0
- data/{new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/helper → examples/temp_sensor/test/support}/UnityHelper.c +0 -0
- data/{new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/helper → examples/temp_sensor/test/support}/UnityHelper.h +0 -0
- data/{new_project_template/vendor/ceedling/examples/temp_sensor/test/TestAdcConductor.c → examples/temp_sensor/test/test_AdcConductor.c} +0 -0
- data/{new_project_template/vendor/ceedling/examples/temp_sensor/test/TestAdcHardware.c → examples/temp_sensor/test/test_AdcHardware.c} +0 -0
- data/{new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestAdcHardwareConfigurator.c → examples/temp_sensor/test/test_AdcHardwareConfigurator.c} +0 -0
- data/{new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestAdcTemperatureSensor.c → examples/temp_sensor/test/test_AdcTemperatureSensor.c} +0 -0
- data/{new_project_template/vendor/ceedling/examples/temp_sensor/test/TestExecutor.c → examples/temp_sensor/test/test_Executor.c} +0 -0
- data/{new_project_template/vendor/ceedling/examples/temp_sensor/test/TestModel.c → examples/temp_sensor/test/test_Model.c} +0 -0
- data/{new_project_template/vendor/ceedling/examples/temp_sensor/test/TestTaskScheduler.c → examples/temp_sensor/test/test_TaskScheduler.c} +0 -0
- data/{new_project_template/vendor/ceedling/examples/temp_sensor/test/TestTemperatureCalculator.c → examples/temp_sensor/test/test_TemperatureCalculator.c} +0 -0
- data/{new_project_template/vendor/ceedling/examples/temp_sensor/test/TestTemperatureFilter.c → examples/temp_sensor/test/test_TemperatureFilter.c} +2 -0
- data/{new_project_template/vendor/ceedling/examples/temp_sensor/test/TestAdcModel.c → examples/temp_sensor/test/test_TestAdcModel.c} +0 -0
- data/{new_project_template/vendor/ceedling/examples/temp_sensor/test/TestMain.c → examples/temp_sensor/test/test_TestMain.c} +0 -0
- data/{new_project_template/vendor/ceedling/examples/temp_sensor/test/TestTimerConductor.c → examples/temp_sensor/test/test_TimerConductor.c} +0 -0
- data/{new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTimerConfigurator.c → examples/temp_sensor/test/test_TimerConfigurator.c} +0 -0
- data/{new_project_template/vendor/ceedling/examples/temp_sensor/test/TestTimerHardware.c → examples/temp_sensor/test/test_TimerHardware.c} +0 -0
- data/{new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTimerInterruptConfigurator.c → examples/temp_sensor/test/test_TimerInterruptConfigurator.c} +0 -0
- data/{new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTimerInterruptHandler.c → examples/temp_sensor/test/test_TimerInterruptHandler.c} +0 -0
- data/{new_project_template/vendor/ceedling/examples/temp_sensor/test/TestTimerModel.c → examples/temp_sensor/test/test_TimerModel.c} +0 -0
- data/{new_project_template/vendor/ceedling/examples/temp_sensor/test/TestUsartBaudRateRegisterCalculator.c → examples/temp_sensor/test/test_UsartBaudRateRegisterCalculator.c} +0 -0
- data/{new_project_template/vendor/ceedling/examples/temp_sensor/test/TestUsartConductor.c → examples/temp_sensor/test/test_UsartConductor.c} +1 -1
- data/{new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartConfigurator.c → examples/temp_sensor/test/test_UsartConfigurator.c} +0 -0
- data/examples/temp_sensor/test/test_UsartGetChar.c +17 -0
- data/{new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartHardware.c → examples/temp_sensor/test/test_UsartHardware.c} +19 -0
- data/{new_project_template/vendor/ceedling/examples/temp_sensor/test/TestUsartModel.c → examples/temp_sensor/test/test_UsartModel.c} +0 -0
- data/{new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartPutChar.c → examples/temp_sensor/test/test_UsartPutChar.c} +0 -0
- data/{new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartTransmitBufferStatus.c → examples/temp_sensor/test/test_UsartTransmitBufferStatus.c} +0 -0
- data/lib/ceedling/version.rb +1 -1
- data/new_project_template/project.yml +1 -1
- metadata +121 -849
- data/new_project_template/vendor/ceedling/config/test_environment.rb +0 -12
- data/new_project_template/vendor/ceedling/examples/temp_sensor/gcc.yml +0 -42
- data/new_project_template/vendor/ceedling/examples/temp_sensor/iar_v4.yml +0 -91
- data/new_project_template/vendor/ceedling/examples/temp_sensor/iar_v5.yml +0 -80
- data/new_project_template/vendor/ceedling/examples/temp_sensor/project.yml +0 -65
- data/new_project_template/vendor/ceedling/examples/temp_sensor/rakefile.rb +0 -5
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/AdcConductor.h +0 -13
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TemperatureCalculator.h +0 -8
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/Types.h +0 -90
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartBaudRateRegisterCalculator.h +0 -8
- data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestUsartHardware.c +0 -36
- data/new_project_template/vendor/ceedling/examples/temp_sensor/test/support/UnityHelper.c +0 -12
- data/new_project_template/vendor/ceedling/examples/temp_sensor/test/support/UnityHelper.h +0 -8
- data/new_project_template/vendor/ceedling/test/integration/paths.yml +0 -17
- data/new_project_template/vendor/ceedling/test/integration/paths_test.rb +0 -80
- data/new_project_template/vendor/ceedling/test/integration/rake_rules_aux_dependencies_test.rb +0 -75
- data/new_project_template/vendor/ceedling/test/integration/rake_rules_cmock_test.rb +0 -74
- data/new_project_template/vendor/ceedling/test/integration/rake_rules_preprocess_test.rb +0 -178
- data/new_project_template/vendor/ceedling/test/integration/rake_rules_test.rb +0 -268
- data/new_project_template/vendor/ceedling/test/integration/rake_tasks_test.rb +0 -103
- data/new_project_template/vendor/ceedling/test/integration_test_helper.rb +0 -34
- data/new_project_template/vendor/ceedling/test/rakefile_rules.rb +0 -10
- data/new_project_template/vendor/ceedling/test/rakefile_rules_aux_dependencies.rb +0 -10
- data/new_project_template/vendor/ceedling/test/rakefile_rules_cmock.rb +0 -10
- data/new_project_template/vendor/ceedling/test/rakefile_rules_preprocess.rb +0 -10
- data/new_project_template/vendor/ceedling/test/rakefile_tasks.rb +0 -10
- data/new_project_template/vendor/ceedling/test/system/file_system_dependencies.yml +0 -20
- data/new_project_template/vendor/ceedling/test/system/file_system_kitchen_sink.yml +0 -20
- data/new_project_template/vendor/ceedling/test/system/file_system_mocks.yml +0 -20
- data/new_project_template/vendor/ceedling/test/system/file_system_preprocess.yml +0 -20
- data/new_project_template/vendor/ceedling/test/system/file_system_simple.yml +0 -20
- data/new_project_template/vendor/ceedling/test/system/file_system_test.rb +0 -78
- data/new_project_template/vendor/ceedling/test/system/mocks/include/a_file.h +0 -2
- data/new_project_template/vendor/ceedling/test/system/mocks/include/other_stuff.h +0 -2
- data/new_project_template/vendor/ceedling/test/system/mocks/include/stuff.h +0 -3
- data/new_project_template/vendor/ceedling/test/system/mocks/source/a_file.c +0 -9
- data/new_project_template/vendor/ceedling/test/system/mocks/test/test_a_file.c +0 -41
- data/new_project_template/vendor/ceedling/test/system/mocks/test/test_no_file.c +0 -14
- data/new_project_template/vendor/ceedling/test/system/project_mocks.yml +0 -43
- data/new_project_template/vendor/ceedling/test/system/project_mocks_test.rb +0 -38
- data/new_project_template/vendor/ceedling/test/system/project_simple.yml +0 -36
- data/new_project_template/vendor/ceedling/test/system/project_simple_test.rb +0 -39
- data/new_project_template/vendor/ceedling/test/system/rule_mocks_test.rb +0 -44
- data/new_project_template/vendor/ceedling/test/system/rule_runners_test.rb +0 -44
- data/new_project_template/vendor/ceedling/test/system/simple/include/other_stuff.h +0 -2
- data/new_project_template/vendor/ceedling/test/system/simple/include/stuff.h +0 -3
- data/new_project_template/vendor/ceedling/test/system/simple/source/other_stuff.c +0 -6
- data/new_project_template/vendor/ceedling/test/system/simple/source/stuff.c +0 -7
- data/new_project_template/vendor/ceedling/test/system/simple/test/test_other_stuff.c +0 -30
- data/new_project_template/vendor/ceedling/test/system/simple/test/test_stuff.c +0 -51
- data/new_project_template/vendor/ceedling/test/system_test_helper.rb +0 -73
- data/new_project_template/vendor/ceedling/test/test_helper.rb +0 -93
- data/new_project_template/vendor/ceedling/test/unit/busted/configurator_builder_test.rb +0 -571
- data/new_project_template/vendor/ceedling/test/unit/busted/configurator_helper_test.rb +0 -234
- data/new_project_template/vendor/ceedling/test/unit/busted/configurator_test.rb +0 -232
- data/new_project_template/vendor/ceedling/test/unit/busted/configurator_validator_test.rb +0 -169
- data/new_project_template/vendor/ceedling/test/unit/busted/deep_merge_fix_test.rb +0 -55
- data/new_project_template/vendor/ceedling/test/unit/busted/dependinator_test.rb +0 -129
- data/new_project_template/vendor/ceedling/test/unit/busted/file_finder_helper_test.rb +0 -45
- data/new_project_template/vendor/ceedling/test/unit/busted/file_finder_test.rb +0 -114
- data/new_project_template/vendor/ceedling/test/unit/busted/file_path_utils_test.rb +0 -97
- data/new_project_template/vendor/ceedling/test/unit/busted/file_system_utils_test.rb +0 -21
- data/new_project_template/vendor/ceedling/test/unit/busted/generator_test.rb +0 -187
- data/new_project_template/vendor/ceedling/test/unit/busted/generator_test_results_test.rb +0 -129
- data/new_project_template/vendor/ceedling/test/unit/busted/generator_test_runner_test.rb +0 -478
- data/new_project_template/vendor/ceedling/test/unit/busted/preprocessinator_extractor_test.rb +0 -729
- data/new_project_template/vendor/ceedling/test/unit/busted/preprocessinator_file_handler_test.rb +0 -38
- data/new_project_template/vendor/ceedling/test/unit/busted/preprocessinator_helper_test.rb +0 -156
- data/new_project_template/vendor/ceedling/test/unit/busted/preprocessinator_includes_handler_test.rb +0 -93
- data/new_project_template/vendor/ceedling/test/unit/busted/preprocessinator_test.rb +0 -57
- data/new_project_template/vendor/ceedling/test/unit/busted/project_file_loader_test.rb +0 -142
- data/new_project_template/vendor/ceedling/test/unit/busted/setupinator_test.rb +0 -45
- data/new_project_template/vendor/ceedling/test/unit/busted/streaminator_test.rb +0 -49
- data/new_project_template/vendor/ceedling/test/unit/busted/task_invoker_test.rb +0 -69
- data/new_project_template/vendor/ceedling/test/unit/busted/test_includes_extractor_test.rb +0 -111
- data/new_project_template/vendor/ceedling/test/unit/busted/test_invoker_helper_test.rb +0 -62
- data/new_project_template/vendor/ceedling/test/unit/busted/test_invoker_test.rb +0 -47
- data/new_project_template/vendor/ceedling/test/unit/busted/tool_executor_helper_test.rb +0 -100
- data/new_project_template/vendor/ceedling/test/unit/busted/tool_executor_test.rb +0 -351
- data/new_project_template/vendor/ceedling/test/unit/busted/verbosinator_test.rb +0 -65
- data/new_project_template/vendor/ceedling/test/unit_test_helper.rb +0 -16
- data/new_project_template/vendor/ceedling/vendor/behaviors/Manifest.txt +0 -9
- data/new_project_template/vendor/ceedling/vendor/behaviors/Rakefile +0 -19
- data/new_project_template/vendor/ceedling/vendor/behaviors/lib/behaviors.rb +0 -76
- data/new_project_template/vendor/ceedling/vendor/behaviors/lib/behaviors/reporttask.rb +0 -158
- data/new_project_template/vendor/ceedling/vendor/behaviors/test/behaviors_tasks_test.rb +0 -73
- data/new_project_template/vendor/ceedling/vendor/behaviors/test/behaviors_test.rb +0 -50
- data/new_project_template/vendor/ceedling/vendor/behaviors/test/tasks_test/Rakefile +0 -19
- data/new_project_template/vendor/ceedling/vendor/behaviors/test/tasks_test/lib/user.rb +0 -2
- data/new_project_template/vendor/ceedling/vendor/behaviors/test/tasks_test/test/user_test.rb +0 -17
- data/new_project_template/vendor/ceedling/vendor/c_exception/makefile +0 -24
- data/new_project_template/vendor/ceedling/vendor/c_exception/rakefile.rb +0 -41
- data/new_project_template/vendor/ceedling/vendor/c_exception/test/CExceptionConfig.h +0 -27
- data/new_project_template/vendor/ceedling/vendor/c_exception/test/TestException.c +0 -291
- data/new_project_template/vendor/ceedling/vendor/c_exception/test/TestException_Runner.c +0 -62
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/colour_prompt.rb +0 -94
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/colour_reporter.rb +0 -39
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/generate_config.yml +0 -36
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/generate_module.rb +0 -202
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/generate_test_runner.rb +0 -303
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/test_file_filter.rb +0 -23
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/unity_test_summary.rb +0 -126
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/docs/Unity Summary.odt +0 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/docs/license.txt +0 -31
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/makefile +0 -40
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/rakefile.rb +0 -32
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/rakefile_helper.rb +0 -260
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/readme.txt +0 -18
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/src/ProductionCode.c +0 -24
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/src/ProductionCode.h +0 -3
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/src/ProductionCode2.c +0 -9
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/src/ProductionCode2.h +0 -2
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/test/TestProductionCode.c +0 -62
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/test/TestProductionCode2.c +0 -26
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +0 -46
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +0 -50
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/build/MakefileWorker.mk +0 -331
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/build/filterGcov.sh +0 -61
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/rakefile.rb +0 -37
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/rakefile_helper.rb +0 -178
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/readme.txt +0 -9
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.c +0 -381
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.h +0 -81
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_internals.h +0 -44
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +0 -16
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/test/main/AllTests.c +0 -21
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/test/testunity_fixture.c +0 -39
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_Test.c +0 -321
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +0 -40
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.c +0 -56
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.h +0 -17
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/makefile +0 -35
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/rakefile.rb +0 -48
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/rakefile_helper.rb +0 -243
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/release/build.info +0 -2
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/release/version.info +0 -2
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/src/unity.c +0 -856
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/src/unity.h +0 -213
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/src/unity_internals.h +0 -355
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/gcc.yml +0 -42
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/gcc_64.yml +0 -43
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/hitech_picc18.yml +0 -101
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_arm_v4.yml +0 -89
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_arm_v5.yml +0 -79
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_arm_v5_3.yml +0 -79
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +0 -93
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_cortexm3_v5.yml +0 -83
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_msp430.yml +0 -94
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_sh2a_v6.yml +0 -85
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_cmd.c +0 -54
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_def.c +0 -50
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_cmd.c +0 -76
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_def.c +0 -72
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new1.c +0 -85
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new2.c +0 -85
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_param.c +0 -73
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run1.c +0 -85
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run2.c +0 -85
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_yaml.c +0 -86
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_new1.c +0 -60
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_new2.c +0 -63
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_param.c +0 -51
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_run1.c +0 -60
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_run2.c +0 -63
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_yaml.c +0 -64
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/test_generate_test_runner.rb +0 -94
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/testdata/mocksample.c +0 -51
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/testdata/sample.yml +0 -9
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/testdata/testsample.c +0 -51
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/testparameterized.c +0 -101
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/testunity.c +0 -1510
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/gcc.yml +0 -43
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/iar_v4.yml +0 -91
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/iar_v5.yml +0 -80
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/rakefile.rb +0 -32
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/rakefile_helper.rb +0 -274
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcConductor.c +0 -42
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcHardware.c +0 -27
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcHardware.h +0 -9
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcHardwareConfigurator.c +0 -18
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcHardwareConfigurator.h +0 -10
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcModel.c +0 -33
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcModel.h +0 -13
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcTemperatureSensor.c +0 -51
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcTemperatureSensor.h +0 -10
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Executor.c +0 -25
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Executor.h +0 -9
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/IntrinsicsWrapper.c +0 -18
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/IntrinsicsWrapper.h +0 -7
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Main.c +0 -46
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Main.h +0 -7
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Model.c +0 -10
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Model.h +0 -8
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/ModelConfig.h +0 -7
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TaskScheduler.c +0 -72
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TaskScheduler.h +0 -11
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TemperatureCalculator.c +0 -27
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TemperatureFilter.c +0 -39
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TemperatureFilter.h +0 -10
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerConductor.c +0 -15
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerConductor.h +0 -9
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerConfigurator.c +0 -51
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerConfigurator.h +0 -15
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerHardware.c +0 -15
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerHardware.h +0 -8
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerInterruptConfigurator.c +0 -55
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerInterruptConfigurator.h +0 -13
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerInterruptHandler.c +0 -25
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerInterruptHandler.h +0 -10
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerModel.c +0 -9
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerModel.h +0 -8
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartBaudRateRegisterCalculator.c +0 -18
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartConductor.c +0 -21
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartConductor.h +0 -7
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartConfigurator.c +0 -39
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartConfigurator.h +0 -13
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartHardware.c +0 -22
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartHardware.h +0 -9
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartModel.c +0 -34
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartModel.h +0 -10
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartPutChar.c +0 -16
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartPutChar.h +0 -8
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartTransmitBufferStatus.c +0 -7
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartTransmitBufferStatus.h +0 -8
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestAdcConductor.c +0 -121
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestAdcHardware.c +0 -44
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestAdcModel.c +0 -33
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestExecutor.c +0 -36
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestMain.c +0 -24
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestModel.c +0 -20
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTaskScheduler.c +0 -104
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTemperatureCalculator.c +0 -33
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTemperatureFilter.c +0 -69
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTimerConductor.c +0 -32
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTimerHardware.c +0 -26
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTimerModel.c +0 -18
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartBaudRateRegisterCalculator.c +0 -21
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartConductor.c +0 -40
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartModel.c +0 -40
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/Resource/SAM7_FLASH.mac +0 -71
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/Resource/SAM7_RAM.mac +0 -94
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/Resource/SAM7_SIM.mac +0 -67
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/Resource/at91SAM7X256_FLASH.xcl +0 -185
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/Resource/at91SAM7X256_RAM.xcl +0 -185
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/Resource/ioat91sam7x256.ddf +0 -2259
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/cmock_demo.dep +0 -3691
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/cmock_demo.ewd +0 -1696
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/cmock_demo.ewp +0 -2581
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/cmock_demo.eww +0 -10
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X-EK.h +0 -61
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.inc +0 -2314
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.rdf +0 -4704
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.tcl +0 -3407
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256_inc.h +0 -2268
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/ioat91sam7x256.h +0 -4380
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/lib_AT91SAM7X256.h +0 -4211
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/settings/cmock_demo.cspy.bat +0 -32
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/settings/cmock_demo.dbgdt +0 -86
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/settings/cmock_demo.dni +0 -42
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/settings/cmock_demo.wsdt +0 -76
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/srcIAR/Cstartup.s79 +0 -266
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/srcIAR/Cstartup_SAM7.c +0 -98
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/Resource/SAM7_FLASH.mac +0 -71
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/Resource/SAM7_RAM.mac +0 -94
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/Resource/SAM7_SIM.mac +0 -67
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/Resource/at91SAM7X256_FLASH.icf +0 -43
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/Resource/at91SAM7X256_RAM.icf +0 -42
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/cmock_demo.dep +0 -4204
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/cmock_demo.ewd +0 -1906
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/cmock_demo.ewp +0 -2426
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/cmock_demo.eww +0 -26
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/incIAR/AT91SAM7X-EK.h +0 -61
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/incIAR/AT91SAM7X256_inc.h +0 -2268
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/incIAR/lib_AT91SAM7X256.h +0 -4211
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/incIAR/project.h +0 -30
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.cspy.bat +0 -33
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.dbgdt +0 -5
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.dni +0 -18
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.wsdt +0 -74
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X_FLASH_Debug.jlink +0 -12
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo.cspy.bat +0 -33
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo.dbgdt +0 -85
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo.dni +0 -44
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo.wsdt +0 -73
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo_Binary.jlink +0 -12
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo_FLASH_Debug.jlink +0 -12
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo_RAM_Debug.jlink +0 -12
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/srcIAR/Cstartup.s +0 -299
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/srcIAR/Cstartup_SAM7.c +0 -98
- data/new_project_template/vendor/ceedling/vendor/cmock/rakefile.rb +0 -89
- data/new_project_template/vendor/ceedling/vendor/cmock/rakefile_helper.rb +0 -383
- data/new_project_template/vendor/ceedling/vendor/cmock/targets/gcc.yml +0 -50
- data/new_project_template/vendor/ceedling/vendor/cmock/targets/gcc_32_with_64_support.yml +0 -52
- data/new_project_template/vendor/ceedling/vendor/cmock/targets/gcc_64.yml +0 -53
- data/new_project_template/vendor/ceedling/vendor/cmock/targets/iar_arm_v4.yml +0 -107
- data/new_project_template/vendor/ceedling/vendor/cmock/targets/iar_arm_v5.yml +0 -92
- data/new_project_template/vendor/ceedling/vendor/cmock/test/c/TestCMockC.c +0 -280
- data/new_project_template/vendor/ceedling/vendor/cmock/test/c/TestCMockC.yml +0 -12
- data/new_project_template/vendor/ceedling/vendor/cmock/test/c/TestCMockCDynamic.c +0 -186
- data/new_project_template/vendor/ceedling/vendor/cmock/test/c/TestCMockCDynamic.yml +0 -12
- data/new_project_template/vendor/ceedling/vendor/cmock/test/c/TestCMockCDynamic_Runner.c +0 -35
- data/new_project_template/vendor/ceedling/vendor/cmock/test/c/TestCMockC_Runner.c +0 -37
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/systest_generator.rb +0 -178
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_compilation/config.yml +0 -9
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_compilation/const.h +0 -15
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_compilation/osek.h +0 -275
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_compilation/parsing.h +0 -47
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/all_plugins_but_other_limits.yml +0 -340
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/all_plugins_coexist.yml +0 -381
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/array_and_pointer_handling.yml +0 -382
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/basic_expect_and_return.yml +0 -123
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/const_primitives_handling.yml +0 -87
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/enforce_strict_ordering.yml +0 -247
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/expect_and_return_custom_types.yml +0 -108
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/expect_and_return_treat_as.yml +0 -173
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/expect_and_throw.yml +0 -170
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/fancy_pointer_handling.yml +0 -208
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/function_pointer_handling.yml +0 -82
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/ignore_and_return.yml +0 -153
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/newer_standards_stuff1.yml +0 -52
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/nonstandard_parsed_stuff_1.yml +0 -91
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/nonstandard_parsed_stuff_2.yml +0 -59
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/parsing_challenges.yml +0 -222
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/struct_union_enum_expect_and_return.yml +0 -277
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/stubs_with_callbacks.yml +0 -221
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/unity_64bit_support.yml +0 -82
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/unity_ignores.yml +0 -139
- data/new_project_template/vendor/ceedling/vendor/cmock/test/test_helper.rb +0 -44
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_config_test.rb +0 -45
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_config_test.yml +0 -5
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_file_writer_test.rb +0 -30
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_main_test.rb +0 -412
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_plugin_array_test.rb +0 -114
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_plugin_callback_test.rb +0 -190
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_plugin_cexception_test.rb +0 -94
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_plugin_expect_test.rb +0 -206
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_plugin_ignore_test.rb +0 -159
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_utils_test.rb +0 -291
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_header_parser_test.rb +0 -1170
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_plugin_manager_test.rb +0 -85
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_unityhelper_parser_test.rb +0 -223
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/Manifest.txt +0 -9
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/Rakefile +0 -19
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/lib/behaviors.rb +0 -76
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/lib/behaviors/reporttask.rb +0 -158
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/test/behaviors_tasks_test.rb +0 -73
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/test/behaviors_test.rb +0 -50
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/test/tasks_test/Rakefile +0 -19
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/test/tasks_test/lib/user.rb +0 -2
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/test/tasks_test/test/user_test.rb +0 -17
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/docs/CExceptionSummary.odt +0 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/docs/CExceptionSummary.pdf +0 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/docs/license.txt +0 -30
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/docs/readme.txt +0 -236
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/lib/CException.c +0 -39
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/lib/CException.h +0 -70
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/makefile +0 -24
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/rakefile.rb +0 -41
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/release/build.info +0 -2
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/release/version.info +0 -2
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/test/CExceptionConfig.h +0 -27
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/test/TestException.c +0 -291
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/test/TestException_Runner.c +0 -62
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/colour_prompt.rb +0 -94
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/colour_reporter.rb +0 -39
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/generate_config.yml +0 -36
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/generate_module.rb +0 -202
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/generate_test_runner.rb +0 -303
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/test_file_filter.rb +0 -23
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/unity_test_summary.rb +0 -126
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/docs/Unity Summary.odt +0 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/docs/Unity Summary.pdf +0 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/docs/Unity Summary.txt +0 -217
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/docs/license.txt +0 -31
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/helper/UnityHelper.c +0 -10
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/helper/UnityHelper.h +0 -12
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/makefile +0 -40
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/rakefile.rb +0 -32
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/rakefile_helper.rb +0 -260
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/readme.txt +0 -18
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/src/ProductionCode.c +0 -24
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/src/ProductionCode.h +0 -3
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/src/ProductionCode2.c +0 -9
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/src/ProductionCode2.h +0 -2
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/test/TestProductionCode.c +0 -62
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/test/TestProductionCode2.c +0 -26
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +0 -46
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +0 -50
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/build/MakefileWorker.mk +0 -331
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/build/filterGcov.sh +0 -61
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/rakefile.rb +0 -37
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/rakefile_helper.rb +0 -178
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/readme.txt +0 -9
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.c +0 -381
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.h +0 -81
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_internals.h +0 -44
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +0 -16
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/main/AllTests.c +0 -21
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/testunity_fixture.c +0 -39
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_Test.c +0 -321
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +0 -40
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.c +0 -56
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.h +0 -17
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/makefile +0 -35
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/rakefile.rb +0 -48
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/rakefile_helper.rb +0 -243
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/release/build.info +0 -2
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/release/version.info +0 -2
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/src/unity.c +0 -856
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/src/unity.h +0 -213
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/src/unity_internals.h +0 -355
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/gcc.yml +0 -42
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/gcc_64.yml +0 -43
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/hitech_picc18.yml +0 -101
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_arm_v4.yml +0 -89
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_arm_v5.yml +0 -79
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_arm_v5_3.yml +0 -79
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +0 -93
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_cortexm3_v5.yml +0 -83
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_msp430.yml +0 -94
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_sh2a_v6.yml +0 -85
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_cmd.c +0 -54
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_def.c +0 -50
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_cmd.c +0 -76
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_def.c +0 -72
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new1.c +0 -85
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new2.c +0 -85
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_param.c +0 -73
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run1.c +0 -85
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run2.c +0 -85
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_yaml.c +0 -86
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_new1.c +0 -60
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_new2.c +0 -63
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_param.c +0 -51
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_run1.c +0 -60
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_run2.c +0 -63
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_yaml.c +0 -64
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/test_generate_test_runner.rb +0 -94
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/mocksample.c +0 -51
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/sample.yml +0 -9
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/testsample.c +0 -51
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/testparameterized.c +0 -101
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/testunity.c +0 -1510
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/CHANGES +0 -78
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/LICENSE +0 -7
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/README +0 -70
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/Rakefile +0 -8
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/config/environment.rb +0 -12
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/assert_error.rb +0 -23
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/extend_test_unit.rb +0 -14
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock.rb +0 -86
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/errors.rb +0 -22
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/expectation.rb +0 -229
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/expectation_builder.rb +0 -9
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/expector.rb +0 -26
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/method_cleanout.rb +0 -33
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/mock.rb +0 -180
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/mock_control.rb +0 -53
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/stubbing.rb +0 -210
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/trapper.rb +0 -31
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/utils.rb +0 -9
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/test_unit_before_after.rb +0 -169
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/rake_tasks/rdoc.rake +0 -19
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/rake_tasks/rdoc_options.rb +0 -4
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/rake_tasks/test.rake +0 -22
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/functional/assert_error_test.rb +0 -52
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/functional/auto_verify_test.rb +0 -178
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/functional/direct_mock_usage_test.rb +0 -396
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/functional/hardmock_test.rb +0 -434
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/functional/stubbing_test.rb +0 -479
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/test_helper.rb +0 -43
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/expectation_builder_test.rb +0 -19
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/expectation_test.rb +0 -372
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/expector_test.rb +0 -57
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/method_cleanout_test.rb +0 -36
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/mock_control_test.rb +0 -175
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/mock_test.rb +0 -279
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/test_unit_before_after_test.rb +0 -452
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/trapper_test.rb +0 -62
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/verify_error_test.rb +0 -40
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/colour_prompt.rb +0 -94
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/colour_reporter.rb +0 -39
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/generate_config.yml +0 -36
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/generate_module.rb +0 -202
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/generate_test_runner.rb +0 -303
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/test_file_filter.rb +0 -23
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/unity_test_summary.rb +0 -126
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/docs/Unity Summary.odt +0 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/docs/Unity Summary.pdf +0 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/docs/Unity Summary.txt +0 -217
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/docs/license.txt +0 -31
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/helper/UnityHelper.c +0 -10
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/helper/UnityHelper.h +0 -12
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/makefile +0 -40
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/rakefile.rb +0 -32
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/rakefile_helper.rb +0 -260
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/readme.txt +0 -18
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/src/ProductionCode.c +0 -24
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/src/ProductionCode.h +0 -3
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/src/ProductionCode2.c +0 -9
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/src/ProductionCode2.h +0 -2
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/test/TestProductionCode.c +0 -62
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/test/TestProductionCode2.c +0 -26
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +0 -46
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +0 -50
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/build/MakefileWorker.mk +0 -331
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/build/filterGcov.sh +0 -61
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/rakefile.rb +0 -37
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/rakefile_helper.rb +0 -178
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/readme.txt +0 -9
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture.c +0 -381
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture.h +0 -81
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture_internals.h +0 -44
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +0 -16
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/test/main/AllTests.c +0 -21
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/test/testunity_fixture.c +0 -39
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/test/unity_fixture_Test.c +0 -321
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +0 -40
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/test/unity_output_Spy.c +0 -56
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/test/unity_output_Spy.h +0 -17
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/makefile +0 -35
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/rakefile.rb +0 -48
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/rakefile_helper.rb +0 -243
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/release/build.info +0 -2
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/release/version.info +0 -2
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/src/unity.c +0 -856
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/src/unity.h +0 -213
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/src/unity_internals.h +0 -355
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/gcc.yml +0 -42
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/gcc_64.yml +0 -43
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/hitech_picc18.yml +0 -101
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_arm_v4.yml +0 -89
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_arm_v5.yml +0 -79
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_arm_v5_3.yml +0 -79
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +0 -93
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_cortexm3_v5.yml +0 -83
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_msp430.yml +0 -94
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_sh2a_v6.yml +0 -85
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_cmd.c +0 -54
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_def.c +0 -50
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_cmd.c +0 -76
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_def.c +0 -72
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_new1.c +0 -85
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_new2.c +0 -85
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_param.c +0 -73
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_run1.c +0 -85
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_run2.c +0 -85
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_yaml.c +0 -86
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_new1.c +0 -60
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_new2.c +0 -63
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_param.c +0 -51
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_run1.c +0 -60
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_run2.c +0 -63
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_yaml.c +0 -64
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/test_generate_test_runner.rb +0 -94
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/testdata/mocksample.c +0 -51
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/testdata/sample.yml +0 -9
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/testdata/testsample.c +0 -51
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/testparameterized.c +0 -101
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/testunity.c +0 -1510
- data/new_project_template/vendor/ceedling/vendor/constructor/History.rdoc +0 -19
- data/new_project_template/vendor/ceedling/vendor/constructor/README.rdoc +0 -72
- data/new_project_template/vendor/ceedling/vendor/constructor/Rakefile +0 -33
- data/new_project_template/vendor/ceedling/vendor/constructor/homepage/Notes.txt +0 -27
- data/new_project_template/vendor/ceedling/vendor/constructor/homepage/Rakefile +0 -15
- data/new_project_template/vendor/ceedling/vendor/constructor/homepage/index.erb +0 -27
- data/new_project_template/vendor/ceedling/vendor/constructor/homepage/index.html +0 -36
- data/new_project_template/vendor/ceedling/vendor/constructor/homepage/page_header.graffle +0 -0
- data/new_project_template/vendor/ceedling/vendor/constructor/homepage/page_header.html +0 -9
- data/new_project_template/vendor/ceedling/vendor/constructor/homepage/page_header.png +0 -0
- data/new_project_template/vendor/ceedling/vendor/constructor/homepage/sample_code.png +0 -0
- data/new_project_template/vendor/ceedling/vendor/constructor/homepage/sample_code.rb +0 -12
- data/new_project_template/vendor/ceedling/vendor/constructor/specs/constructor_spec.rb +0 -407
- data/new_project_template/vendor/ceedling/vendor/constructor/specs/constructor_struct_spec.rb +0 -84
- data/new_project_template/vendor/ceedling/vendor/diy/Rakefile +0 -33
- data/new_project_template/vendor/ceedling/vendor/diy/TODO.txt +0 -9
- data/new_project_template/vendor/ceedling/vendor/diy/diy.gemspec +0 -131
- data/new_project_template/vendor/ceedling/vendor/diy/sample_code/car.rb +0 -7
- data/new_project_template/vendor/ceedling/vendor/diy/sample_code/chassis.rb +0 -5
- data/new_project_template/vendor/ceedling/vendor/diy/sample_code/diy_example.rb +0 -26
- data/new_project_template/vendor/ceedling/vendor/diy/sample_code/engine.rb +0 -5
- data/new_project_template/vendor/ceedling/vendor/diy/sample_code/objects.yml +0 -10
- data/new_project_template/vendor/ceedling/vendor/diy/test/constructor.rb +0 -119
- data/new_project_template/vendor/ceedling/vendor/diy/test/diy_test.rb +0 -608
- data/new_project_template/vendor/ceedling/vendor/diy/test/factory_test.rb +0 -79
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/broken_construction.yml +0 -7
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/cat/cat.rb +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/cat/extra_conflict.yml +0 -5
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/cat/heritage.rb +0 -2
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/cat/needs_input.yml +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/cat/the_cat_lineage.rb +0 -1
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/dog/dog_model.rb +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/dog/dog_presenter.rb +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/dog/dog_view.rb +0 -2
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/dog/file_resolver.rb +0 -2
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/dog/other_thing.rb +0 -2
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/dog/simple.yml +0 -11
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/donkey/foo.rb +0 -8
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/donkey/foo/bar/qux.rb +0 -7
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/factory/beef.rb +0 -5
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/factory/dog.rb +0 -6
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/factory/factory.yml +0 -19
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/factory/farm/llama.rb +0 -7
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/factory/farm/pork.rb +0 -7
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/factory/kitten.rb +0 -13
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/fud/objects.yml +0 -13
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/fud/toy.rb +0 -14
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/attached_things_builder.rb +0 -2
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/invalid_method.yml +0 -5
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/method_extractor.rb +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/nonsingleton_objects.yml +0 -6
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/objects.yml +0 -22
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/thing.rb +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/thing_builder.rb +0 -25
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/things_builder.rb +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/gnu/objects.yml +0 -14
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/gnu/thinger.rb +0 -7
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/base.rb +0 -8
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/can.rb +0 -6
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/goat.rb +0 -6
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/objects.yml +0 -12
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/paper.rb +0 -6
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/plane.rb +0 -7
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/shirt.rb +0 -6
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/wings.rb +0 -8
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/horse/holder_thing.rb +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/horse/objects.yml +0 -7
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/animal/bird.rb +0 -5
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/animal/cat.rb +0 -5
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/animal/reptile/hardshell/turtle.rb +0 -8
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/animal/reptile/lizard.rb +0 -7
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/bad_module_specified.yml +0 -8
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/class_name_combine.yml +0 -8
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/hello.txt +0 -1
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/no_module_specified.yml +0 -8
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/objects.yml +0 -21
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/road.rb +0 -2
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/sky.rb +0 -2
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/subcontext.yml +0 -22
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/air.rb +0 -2
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/fat_cat.rb +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/objects.yml +0 -19
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/pig.rb +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/thread_spinner.rb +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/tick.rb +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/yard.rb +0 -2
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/core_model.rb +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/core_presenter.rb +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/core_view.rb +0 -1
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/data_source.rb +0 -1
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/fringe_model.rb +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/fringe_presenter.rb +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/fringe_view.rb +0 -1
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/giant_squid.rb +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/krill.rb +0 -2
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/my_objects.yml +0 -21
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/sub_sub_context_test.yml +0 -27
- data/new_project_template/vendor/ceedling/vendor/diy/test/test_helper.rb +0 -55
- data/new_project_template/vendor/ceedling/vendor/hardmock/CHANGES +0 -78
- data/new_project_template/vendor/ceedling/vendor/hardmock/LICENSE +0 -7
- data/new_project_template/vendor/ceedling/vendor/hardmock/README +0 -70
- data/new_project_template/vendor/ceedling/vendor/hardmock/Rakefile +0 -8
- data/new_project_template/vendor/ceedling/vendor/hardmock/config/environment.rb +0 -12
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/assert_error.rb +0 -23
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/extend_test_unit.rb +0 -14
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock.rb +0 -86
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/errors.rb +0 -22
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/expectation.rb +0 -229
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/expectation_builder.rb +0 -9
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/expector.rb +0 -26
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/method_cleanout.rb +0 -33
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/mock.rb +0 -180
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/mock_control.rb +0 -53
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/stubbing.rb +0 -210
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/trapper.rb +0 -31
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/utils.rb +0 -9
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/test_unit_before_after.rb +0 -169
- data/new_project_template/vendor/ceedling/vendor/hardmock/rake_tasks/rdoc.rake +0 -19
- data/new_project_template/vendor/ceedling/vendor/hardmock/rake_tasks/rdoc_options.rb +0 -4
- data/new_project_template/vendor/ceedling/vendor/hardmock/rake_tasks/test.rake +0 -22
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/functional/assert_error_test.rb +0 -52
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/functional/auto_verify_test.rb +0 -178
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/functional/direct_mock_usage_test.rb +0 -396
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/functional/hardmock_test.rb +0 -434
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/functional/stubbing_test.rb +0 -479
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/test_helper.rb +0 -43
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/expectation_builder_test.rb +0 -19
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/expectation_test.rb +0 -372
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/expector_test.rb +0 -57
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/method_cleanout_test.rb +0 -36
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/mock_control_test.rb +0 -175
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/mock_test.rb +0 -279
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/test_unit_before_after_test.rb +0 -452
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/trapper_test.rb +0 -62
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/verify_error_test.rb +0 -40
- data/new_project_template/vendor/ceedling/vendor/unity/auto/colour_prompt.rb +0 -94
- data/new_project_template/vendor/ceedling/vendor/unity/auto/colour_reporter.rb +0 -39
- data/new_project_template/vendor/ceedling/vendor/unity/auto/generate_config.yml +0 -36
- data/new_project_template/vendor/ceedling/vendor/unity/auto/generate_module.rb +0 -202
- data/new_project_template/vendor/ceedling/vendor/unity/auto/generate_test_runner.rb +0 -303
- data/new_project_template/vendor/ceedling/vendor/unity/auto/test_file_filter.rb +0 -23
- data/new_project_template/vendor/ceedling/vendor/unity/auto/unity_test_summary.rb +0 -126
- data/new_project_template/vendor/ceedling/vendor/unity/examples/helper/UnityHelper.c +0 -10
- data/new_project_template/vendor/ceedling/vendor/unity/examples/helper/UnityHelper.h +0 -12
- data/new_project_template/vendor/ceedling/vendor/unity/examples/makefile +0 -40
- data/new_project_template/vendor/ceedling/vendor/unity/examples/rakefile.rb +0 -32
- data/new_project_template/vendor/ceedling/vendor/unity/examples/rakefile_helper.rb +0 -260
- data/new_project_template/vendor/ceedling/vendor/unity/examples/readme.txt +0 -18
- data/new_project_template/vendor/ceedling/vendor/unity/examples/src/ProductionCode.c +0 -24
- data/new_project_template/vendor/ceedling/vendor/unity/examples/src/ProductionCode.h +0 -3
- data/new_project_template/vendor/ceedling/vendor/unity/examples/src/ProductionCode2.c +0 -9
- data/new_project_template/vendor/ceedling/vendor/unity/examples/src/ProductionCode2.h +0 -2
- data/new_project_template/vendor/ceedling/vendor/unity/examples/test/TestProductionCode.c +0 -62
- data/new_project_template/vendor/ceedling/vendor/unity/examples/test/TestProductionCode2.c +0 -26
- data/new_project_template/vendor/ceedling/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +0 -46
- data/new_project_template/vendor/ceedling/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +0 -50
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/build/MakefileWorker.mk +0 -331
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/build/filterGcov.sh +0 -61
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/rakefile.rb +0 -37
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/rakefile_helper.rb +0 -178
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/readme.txt +0 -9
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/src/unity_fixture.c +0 -381
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/src/unity_fixture.h +0 -81
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/src/unity_fixture_internals.h +0 -44
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +0 -16
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/test/main/AllTests.c +0 -21
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/test/testunity_fixture.c +0 -39
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/test/unity_fixture_Test.c +0 -321
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +0 -40
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/test/unity_output_Spy.c +0 -56
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/test/unity_output_Spy.h +0 -17
- data/new_project_template/vendor/ceedling/vendor/unity/makefile +0 -35
- data/new_project_template/vendor/ceedling/vendor/unity/rakefile.rb +0 -48
- data/new_project_template/vendor/ceedling/vendor/unity/rakefile_helper.rb +0 -243
- data/new_project_template/vendor/ceedling/vendor/unity/targets/gcc.yml +0 -42
- data/new_project_template/vendor/ceedling/vendor/unity/targets/gcc_64.yml +0 -43
- data/new_project_template/vendor/ceedling/vendor/unity/targets/hitech_picc18.yml +0 -101
- data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_arm_v4.yml +0 -89
- data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_arm_v5.yml +0 -79
- data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_arm_v5_3.yml +0 -79
- data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +0 -93
- data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_cortexm3_v5.yml +0 -83
- data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_msp430.yml +0 -94
- data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_sh2a_v6.yml +0 -85
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_cmd.c +0 -54
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_def.c +0 -50
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_cmd.c +0 -76
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_def.c +0 -72
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_new1.c +0 -85
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_new2.c +0 -85
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_param.c +0 -73
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_run1.c +0 -85
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_run2.c +0 -85
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_yaml.c +0 -86
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_new1.c +0 -60
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_new2.c +0 -63
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_param.c +0 -51
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_run1.c +0 -60
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_run2.c +0 -63
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_yaml.c +0 -64
- data/new_project_template/vendor/ceedling/vendor/unity/test/test_generate_test_runner.rb +0 -94
- data/new_project_template/vendor/ceedling/vendor/unity/test/testdata/mocksample.c +0 -51
- data/new_project_template/vendor/ceedling/vendor/unity/test/testdata/sample.yml +0 -9
- data/new_project_template/vendor/ceedling/vendor/unity/test/testdata/testsample.c +0 -51
- data/new_project_template/vendor/ceedling/vendor/unity/test/testparameterized.c +0 -101
- data/new_project_template/vendor/ceedling/vendor/unity/test/testunity.c +0 -1510
data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/test/behaviors_tasks_test.rb
DELETED
@@ -1,73 +0,0 @@
|
|
1
|
-
require 'test/unit'
|
2
|
-
require 'fileutils'
|
3
|
-
|
4
|
-
class BehaviorsTasksTest < Test::Unit::TestCase
|
5
|
-
include FileUtils
|
6
|
-
|
7
|
-
def setup
|
8
|
-
@here = File.expand_path(File.dirname(__FILE__))
|
9
|
-
@base_cmd = RUBY_PLATFORM[/mswin/] ? 'rake.cmd ' : 'rake '
|
10
|
-
end
|
11
|
-
|
12
|
-
#
|
13
|
-
# HELPERS
|
14
|
-
#
|
15
|
-
def run_behaviors_task
|
16
|
-
run_cmd "behaviors"
|
17
|
-
end
|
18
|
-
|
19
|
-
def run_behaviors_html_task
|
20
|
-
run_cmd "behaviors_html"
|
21
|
-
end
|
22
|
-
|
23
|
-
def run_cmd(cmd)
|
24
|
-
cd "#{@here}/tasks_test" do
|
25
|
-
@report = %x[ #{@base_cmd} #{cmd} ]
|
26
|
-
end
|
27
|
-
end
|
28
|
-
|
29
|
-
def see_html_task_output_message
|
30
|
-
@html_output_filename = "#{@here}/tasks_test/behaviors_doc/behaviors.html"
|
31
|
-
assert_match(/Wrote #{@html_output_filename}/, @report)
|
32
|
-
end
|
33
|
-
|
34
|
-
def see_that_html_report_file_exits
|
35
|
-
assert File.exists?(@html_output_filename), "html output file should exist"
|
36
|
-
end
|
37
|
-
|
38
|
-
def html_report_file_should_contain(user_behaviors)
|
39
|
-
file_contents = File.read(@html_output_filename)
|
40
|
-
user_behaviors.each do |line|
|
41
|
-
assert_match(/#{line}/, file_contents)
|
42
|
-
end
|
43
|
-
rm_rf File.dirname(@html_output_filename)
|
44
|
-
end
|
45
|
-
|
46
|
-
#
|
47
|
-
# TESTS
|
48
|
-
#
|
49
|
-
def test_that_behaviors_tasks_should_list_behavioral_definitions_for_the_classes_under_test
|
50
|
-
run_behaviors_task
|
51
|
-
user_behaviors = [
|
52
|
-
"User should:",
|
53
|
-
" - be able set user name and age during construction",
|
54
|
-
" - be able to get user name and age",
|
55
|
-
" - be able to ask if a user is an adult"
|
56
|
-
]
|
57
|
-
assert_match(/#{user_behaviors.join("\n")}/, @report)
|
58
|
-
end
|
59
|
-
|
60
|
-
def test_that_behaviors_tasks_should_list_behavioral_definitions_for_the_classes_under_test_in_html_output
|
61
|
-
run_behaviors_html_task
|
62
|
-
see_html_task_output_message
|
63
|
-
see_that_html_report_file_exits
|
64
|
-
user_behaviors = [
|
65
|
-
"User should:",
|
66
|
-
"be able set user name and age during construction",
|
67
|
-
"be able to get user name and age",
|
68
|
-
"be able to ask if a user is an adult"
|
69
|
-
]
|
70
|
-
html_report_file_should_contain user_behaviors
|
71
|
-
end
|
72
|
-
|
73
|
-
end
|
data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/test/behaviors_test.rb
DELETED
@@ -1,50 +0,0 @@
|
|
1
|
-
require 'test/unit'
|
2
|
-
require File.expand_path(File.dirname(__FILE__)) + '/../lib/behaviors'
|
3
|
-
require 'stringio'
|
4
|
-
|
5
|
-
loading_developer_test_class_stdout = StringIO.new
|
6
|
-
saved_stdout = $stdout.dup
|
7
|
-
$stdout = loading_developer_test_class_stdout
|
8
|
-
|
9
|
-
class DeveloperTest
|
10
|
-
extend Behaviors
|
11
|
-
attr_accessor :flunk_msg, :tested_code
|
12
|
-
|
13
|
-
should "test their code" do
|
14
|
-
@tested_code = true
|
15
|
-
end
|
16
|
-
should "go to meetings"
|
17
|
-
end
|
18
|
-
|
19
|
-
$stdout = saved_stdout
|
20
|
-
loading_developer_test_class_stdout.rewind
|
21
|
-
$loading_developer_test_class_output = loading_developer_test_class_stdout.read
|
22
|
-
|
23
|
-
class BehaviorsTest < Test::Unit::TestCase
|
24
|
-
|
25
|
-
|
26
|
-
def setup
|
27
|
-
@target = DeveloperTest.new
|
28
|
-
assert_nil @target.tested_code, "block called too early"
|
29
|
-
end
|
30
|
-
|
31
|
-
#
|
32
|
-
# TESTS
|
33
|
-
#
|
34
|
-
def test_should_called_with_a_block_defines_a_test
|
35
|
-
assert @target.methods.include?("test_should_test their code"), "Missing test method"
|
36
|
-
|
37
|
-
@target.send("test_should_test their code")
|
38
|
-
|
39
|
-
assert @target.tested_code, "block not called"
|
40
|
-
end
|
41
|
-
|
42
|
-
def test_should_called_without_a_block_does_not_create_a_test_method
|
43
|
-
assert !@target.methods.include?("test_should_go to meetings"), "Should not have method"
|
44
|
-
end
|
45
|
-
|
46
|
-
def test_should_called_without_a_block_will_give_unimplemented_output_when_class_loads
|
47
|
-
unimplemented_output = "UNIMPLEMENTED CASE: Developer should go to meetings"
|
48
|
-
assert_match(/#{unimplemented_output}/, $loading_developer_test_class_output)
|
49
|
-
end
|
50
|
-
end
|
data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/test/tasks_test/Rakefile
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
require 'rake'
|
2
|
-
require 'rake/testtask'
|
3
|
-
|
4
|
-
here = File.expand_path(File.dirname(__FILE__))
|
5
|
-
require "#{here}/../../lib/behaviors/reporttask"
|
6
|
-
|
7
|
-
desc 'Default: run unit tests.'
|
8
|
-
task :default => :test
|
9
|
-
|
10
|
-
Rake::TestTask.new(:test) do |t|
|
11
|
-
t.libs << "#{here}/../../lib"
|
12
|
-
t.pattern = 'test/**/*_test.rb'
|
13
|
-
t.verbose = true
|
14
|
-
end
|
15
|
-
|
16
|
-
Behaviors::ReportTask.new(:behaviors) do |t|
|
17
|
-
t.pattern = 'test/**/*_test.rb'
|
18
|
-
t.html_dir = 'behaviors_doc'
|
19
|
-
end
|
@@ -1,17 +0,0 @@
|
|
1
|
-
require 'test/unit'
|
2
|
-
require 'behaviors'
|
3
|
-
|
4
|
-
require 'user'
|
5
|
-
|
6
|
-
class UserTest < Test::Unit::TestCase
|
7
|
-
extend Behaviors
|
8
|
-
|
9
|
-
def setup
|
10
|
-
end
|
11
|
-
|
12
|
-
should "be able set user name and age during construction"
|
13
|
-
should "be able to get user name and age"
|
14
|
-
should "be able to ask if a user is an adult"
|
15
|
-
def test_DELETEME
|
16
|
-
end
|
17
|
-
end
|
data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/docs/CExceptionSummary.odt
DELETED
Binary file
|
data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/docs/CExceptionSummary.pdf
DELETED
Binary file
|
@@ -1,30 +0,0 @@
|
|
1
|
-
Copyright (c) 2007 Mark VanderVoord
|
2
|
-
|
3
|
-
Permission is hereby granted, free of charge, to any person
|
4
|
-
obtaining a copy of this software and associated documentation
|
5
|
-
files (the "Software"), to deal in the Software without
|
6
|
-
restriction, including without limitation the rights to use,
|
7
|
-
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
8
|
-
copies of the Software, and to permit persons to whom the
|
9
|
-
Software is furnished to do so, subject to the following
|
10
|
-
conditions:
|
11
|
-
|
12
|
-
The above copyright notice and this permission notice shall be
|
13
|
-
included in all copies or substantial portions of the Software.
|
14
|
-
|
15
|
-
The end-user documentation included with the redistribution, if
|
16
|
-
any, must include the following acknowledgment: "This product
|
17
|
-
includes software developed for the CEXCeption Project, by Mark
|
18
|
-
VanderVoord and other contributors", in the same place and form
|
19
|
-
as other third-party acknowledgments. Alternately, this
|
20
|
-
acknowledgment may appear in the software itself, in the same
|
21
|
-
form and location as other such third-party acknowledgments.
|
22
|
-
|
23
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
24
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
25
|
-
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
26
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
27
|
-
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
28
|
-
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
29
|
-
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
30
|
-
OTHER DEALINGS IN THE SOFTWARE.
|
@@ -1,236 +0,0 @@
|
|
1
|
-
====================================================================
|
2
|
-
CException
|
3
|
-
====================================================================
|
4
|
-
|
5
|
-
CException is a basic exception framework for C, suitable for use in
|
6
|
-
embedded applications. It provides an exception framework similar in
|
7
|
-
use to C++, but with much less overhead.
|
8
|
-
|
9
|
-
CException uses C standard library functions setjmp and longjmp to
|
10
|
-
operate. As long as the target system has these two functions defined,
|
11
|
-
this library should be useable with very little configuration. It
|
12
|
-
even supports environments where multiple program flows are in use,
|
13
|
-
such as real-time operating systems.
|
14
|
-
|
15
|
-
There are about a gabillion exception frameworks using a similar
|
16
|
-
setjmp/longjmp method out there... and there will probably be more
|
17
|
-
in the future. Unfortunately, when we started our last embedded
|
18
|
-
project, all those that existed either (a) did not support multiple
|
19
|
-
tasks (therefore multiple stacks) or (b) were way more complex than
|
20
|
-
we really wanted. CException was born.
|
21
|
-
|
22
|
-
Why use CException?
|
23
|
-
|
24
|
-
0. It's ANSI C, and it beats passing error codes around.
|
25
|
-
|
26
|
-
1. You want something simple... CException throws a single id. You can
|
27
|
-
define those ID's to be whatever you like. You might even choose which
|
28
|
-
type that number is for your project. But that's as far as it goes.
|
29
|
-
We weren't interested in passing objects or structs or strings...
|
30
|
-
just simple error codes.
|
31
|
-
|
32
|
-
2. Performance... CException can be configured for single tasking or
|
33
|
-
multitasking. In single tasking, there is very little overhead past
|
34
|
-
the setjmp/longjmp calls (which are already fast). In multitasking,
|
35
|
-
your only additional overhead is the time it takes you to determine
|
36
|
-
a unique task id 0 - num_tasks.
|
37
|
-
|
38
|
-
For the latest version, go to http://cexception.sourceforge.net
|
39
|
-
|
40
|
-
--------------------------------------------------------------------
|
41
|
-
CONTENTS OF THIS DOCUMENT
|
42
|
-
--------------------------------------------------------------------
|
43
|
-
|
44
|
-
Usage
|
45
|
-
Limitations
|
46
|
-
API
|
47
|
-
Configuration
|
48
|
-
Testing
|
49
|
-
License
|
50
|
-
|
51
|
-
--------------------------------------------------------------------
|
52
|
-
Usage
|
53
|
-
--------------------------------------------------------------------
|
54
|
-
|
55
|
-
Code that is to be protected are wrapped in Try { } Catch { } blocks.
|
56
|
-
The code directly following the Try call is "protected", meaning that
|
57
|
-
if any Throws occur, program control is directly transferred to the
|
58
|
-
start of the Catch block.
|
59
|
-
|
60
|
-
A numerical exception ID is included with Throw, and is made accessible
|
61
|
-
from the Catch block.
|
62
|
-
|
63
|
-
Throws can occur from within function calls (nested as deeply as you
|
64
|
-
like) or directly from within the function itself.
|
65
|
-
|
66
|
-
--------------------------------------------------------------------
|
67
|
-
Limitations
|
68
|
-
--------------------------------------------------------------------
|
69
|
-
|
70
|
-
This library was made to be as fast as possible, and provide basic
|
71
|
-
exception handling. It is not a full-blown exception library. Because
|
72
|
-
of this, there are a few limitations that should be observed in order
|
73
|
-
to successfully utilize this library:
|
74
|
-
|
75
|
-
1. Do not directly "return" from within a Try block, nor "goto"
|
76
|
-
into or out of a Try block.
|
77
|
-
|
78
|
-
Why?
|
79
|
-
|
80
|
-
The "Try" macro allocates some local memory and alters a global
|
81
|
-
pointer. These are cleaned up at the top of the "Catch" macro.
|
82
|
-
Gotos and returns would bypass some of these steps, resulting in
|
83
|
-
memory leaks or unpredictable behavior.
|
84
|
-
|
85
|
-
2. If (a) you change local (stack) variables within your Try block,
|
86
|
-
AND (b) wish to make use of the updated values after an exception
|
87
|
-
is thrown, those variables should be made volatile. Note that this
|
88
|
-
is ONLY for locals and ONLY when you need access to them after a
|
89
|
-
throw.
|
90
|
-
|
91
|
-
Why?
|
92
|
-
|
93
|
-
Compilers optimize. There is no way to guarantee that the actual
|
94
|
-
memory location was updated and not just a register unless the
|
95
|
-
variable is marked volatile.
|
96
|
-
|
97
|
-
3. Memory which is malloc'd or new'd is not automatically released
|
98
|
-
when an error is thrown. This will sometimes be desirable, and
|
99
|
-
othertimes may not. It will be the responsibility of the Catch
|
100
|
-
block to perform this kind of cleanup.
|
101
|
-
|
102
|
-
Why?
|
103
|
-
|
104
|
-
There's just no easy way to track malloc'd memory, etc., without
|
105
|
-
replacing or wrapping malloc calls or something like that. This
|
106
|
-
is a light framework, so these options were not desirable.
|
107
|
-
|
108
|
-
--------------------------------------------------------------------
|
109
|
-
API
|
110
|
-
--------------------------------------------------------------------
|
111
|
-
|
112
|
-
Try
|
113
|
-
---
|
114
|
-
|
115
|
-
Try is a macro which starts a protected block. It MUST be followed by
|
116
|
-
a pair of braces or a single protected line (similar to an 'if'),
|
117
|
-
enclosing the data that is to be protected. It MUST be followed by a
|
118
|
-
Catch block (don't worry, you'll get compiler errors to let you know if
|
119
|
-
you mess any of that up).
|
120
|
-
|
121
|
-
Catch(e)
|
122
|
-
--------
|
123
|
-
|
124
|
-
Catch is a macro which ends the Try block and starts the error handling
|
125
|
-
block. The catch block is called if and only if an exception was thrown
|
126
|
-
while within the Try block. This error was thrown by a Throw call
|
127
|
-
somewhere within Try (or within a function called within Try, or a function
|
128
|
-
called by a function called within Try, etc).
|
129
|
-
|
130
|
-
The single parameter 'e' is filled with the error code which was thrown.
|
131
|
-
This can be used for reporting, conditional cleanup, etc. (or you can just
|
132
|
-
ignore it if you really want... people ignore return codes all the time,
|
133
|
-
right?). 'e' should be of type EXCEPTION_T;
|
134
|
-
|
135
|
-
Throw(e)
|
136
|
-
--------
|
137
|
-
|
138
|
-
The method of throwing an error. Throws should only occur from within a
|
139
|
-
protected (Try...Catch) block, though it may easily be nested many function
|
140
|
-
calls deep without an impact on performance or functionality. Throw takes
|
141
|
-
a single argument, which is an exception id which will be passed to Catch
|
142
|
-
as the reason for the error.
|
143
|
-
|
144
|
-
If you wish to Rethrow an error, this can be done by calling Throw(e) with
|
145
|
-
the error code you just caught. It IS valid to throw from a catch block.
|
146
|
-
|
147
|
-
--------------------------------------------------------------------
|
148
|
-
CONFIGURATION
|
149
|
-
--------------------------------------------------------------------
|
150
|
-
|
151
|
-
CException is a mostly portable library. It has one universal
|
152
|
-
dependency, and some macros which are required if working in a
|
153
|
-
multi-tasking environment.
|
154
|
-
|
155
|
-
1. The standard C library setjmp must be available. Since this is part
|
156
|
-
of the standard library, chances are good that you'll be fine.
|
157
|
-
|
158
|
-
2. If working in a multitasking environment, methods for obtaining an
|
159
|
-
index into an array of frames and to get the overall number of
|
160
|
-
id's are required. If the OS supports a method to retrieve Task
|
161
|
-
ID's, and those Tasks are number 0, 1, 2... you are in an ideal
|
162
|
-
situation. Otherwise, a more creative mapping function may be
|
163
|
-
required. Note that this function is likely to be called twice
|
164
|
-
for each protected block and once during a throw. This is the
|
165
|
-
only overhead in the system.
|
166
|
-
|
167
|
-
Exception.h
|
168
|
-
-----------------
|
169
|
-
By convention, most projects include Exception.h which defines any
|
170
|
-
further requirements, then calls CException.h to do the gruntwork. All
|
171
|
-
of these are optional. You could directly include CException.h if
|
172
|
-
you wanted and just use the defaults provided.
|
173
|
-
|
174
|
-
EXCEPTION_T - Set this to the type you want your exception id's
|
175
|
-
to be. Defaults to 'unsigned int'.
|
176
|
-
|
177
|
-
EXCEPTION_NONE - Set this to a number which will never be an
|
178
|
-
exception id in your system. Defaults to 0x5a5a5a5a.
|
179
|
-
|
180
|
-
EXCEPTION_GET_ID - If in a multi-tasking environment, this should be
|
181
|
-
set to be a call to the function described in #2 above.
|
182
|
-
Defaults to just return 0 all the time (good for
|
183
|
-
single tasking environments)
|
184
|
-
|
185
|
-
EXCEPTION_NUM_ID - If in a multi-tasking environment, this should be set
|
186
|
-
to the number of ID's required (usually the number of
|
187
|
-
tasks in the system). Defaults to 1 (for single
|
188
|
-
tasking environments).
|
189
|
-
|
190
|
-
You may also want to include any header files which will commonly be
|
191
|
-
needed by the rest of your application where it uses exception handling
|
192
|
-
here. For example, OS header files or exception codes would be useful.
|
193
|
-
|
194
|
-
--------------------------------------------------------------------
|
195
|
-
TESTING
|
196
|
-
--------------------------------------------------------------------
|
197
|
-
|
198
|
-
If you want to validate that CException works with your tools or that
|
199
|
-
it works with your custom configuration, you may want to run the test
|
200
|
-
suite.
|
201
|
-
|
202
|
-
The test suite included makes use of the Unity Test Framework. It will
|
203
|
-
require a native C compiler. The example makefile uses MinGW's gcc.
|
204
|
-
Modify the makefile to include the proper paths to tools, then run 'make'
|
205
|
-
to compile and run the test application.
|
206
|
-
|
207
|
-
C_COMPILER - The C compiler to use to perform the tests
|
208
|
-
C_LIBS - The path to the C libraries (including setjmp)
|
209
|
-
UNITY_DIR - The path to the Unity framework (required to run tests)
|
210
|
-
(get it at http://embunity.sourceforge.net)
|
211
|
-
|
212
|
-
--------------------------------------------------------------------
|
213
|
-
LICENSE
|
214
|
-
--------------------------------------------------------------------
|
215
|
-
|
216
|
-
This software is licensed under the MIT License
|
217
|
-
|
218
|
-
Copyright (c) 2007 Mark VanderVoord
|
219
|
-
|
220
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
221
|
-
of this software and associated documentation files (the "Software"), to deal
|
222
|
-
in the Software without restriction, including without limitation the rights
|
223
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
224
|
-
copies of the Software, and to permit persons to whom the Software is
|
225
|
-
furnished to do so, subject to the following conditions:
|
226
|
-
|
227
|
-
The above copyright notice and this permission notice shall be included in
|
228
|
-
all copies or substantial portions of the Software.
|
229
|
-
|
230
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
231
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
232
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
233
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
234
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
235
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
236
|
-
THE SOFTWARE.
|
@@ -1,39 +0,0 @@
|
|
1
|
-
#include "CException.h"
|
2
|
-
|
3
|
-
volatile CEXCEPTION_FRAME_T CExceptionFrames[CEXCEPTION_NUM_ID];
|
4
|
-
|
5
|
-
//------------------------------------------------------------------------------------------
|
6
|
-
// Throw
|
7
|
-
//------------------------------------------------------------------------------------------
|
8
|
-
void Throw(CEXCEPTION_T ExceptionID)
|
9
|
-
{
|
10
|
-
unsigned int MY_ID = CEXCEPTION_GET_ID;
|
11
|
-
CExceptionFrames[MY_ID].Exception = ExceptionID;
|
12
|
-
longjmp(*CExceptionFrames[MY_ID].pFrame, 1);
|
13
|
-
}
|
14
|
-
|
15
|
-
//------------------------------------------------------------------------------------------
|
16
|
-
// Explaination of what it's all for:
|
17
|
-
//------------------------------------------------------------------------------------------
|
18
|
-
/*
|
19
|
-
#define Try
|
20
|
-
{ <- give us some local scope. most compilers are happy with this
|
21
|
-
jmp_buf *PrevFrame, NewFrame; <- prev frame points to the last try block's frame. new frame gets created on stack for this Try block
|
22
|
-
unsigned int MY_ID = CEXCEPTION_GET_ID; <- look up this task's id for use in frame array. always 0 if single-tasking
|
23
|
-
PrevFrame = CExceptionFrames[CEXCEPTION_GET_ID].pFrame; <- set pointer to point at old frame (which array is currently pointing at)
|
24
|
-
CExceptionFrames[MY_ID].pFrame = &NewFrame; <- set array to point at my new frame instead, now
|
25
|
-
CExceptionFrames[MY_ID].Exception = CEXCEPTION_NONE; <- initialize my exception id to be NONE
|
26
|
-
if (setjmp(NewFrame) == 0) { <- do setjmp. it returns 1 if longjump called, otherwise 0
|
27
|
-
if (&PrevFrame) <- this is here to force proper scoping. it requires braces or a single line to be but after Try, otherwise won't compile. This is always true at this point.
|
28
|
-
|
29
|
-
#define Catch(e)
|
30
|
-
else { } <- this also forces proper scoping. Without this they could stick their own 'else' in and it would get ugly
|
31
|
-
CExceptionFrames[MY_ID].Exception = CEXCEPTION_NONE; <- no errors happened, so just set the exception id to NONE (in case it was corrupted)
|
32
|
-
}
|
33
|
-
else <- an exception occurred
|
34
|
-
{ e = CExceptionFrames[MY_ID].Exception; e=e;} <- assign the caught exception id to the variable passed in.
|
35
|
-
CExceptionFrames[MY_ID].pFrame = PrevFrame; <- make the pointer in the array point at the previous frame again, as if NewFrame never existed.
|
36
|
-
} <- finish off that local scope we created to have our own variables
|
37
|
-
if (CExceptionFrames[CEXCEPTION_GET_ID].Exception != CEXCEPTION_NONE) <- start the actual 'catch' processing if we have an exception id saved away
|
38
|
-
*/
|
39
|
-
|