ceedling 0.15.2 → 0.15.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/examples/temp_sensor/src/TimerInterruptConfigurator.h +1 -1
- data/lib/ceedling/defaults.rb +15 -16
- data/lib/ceedling/generator.rb +22 -20
- data/lib/ceedling/generator_test_runner.rb +14 -13
- data/lib/ceedling/version.rb +1 -1
- data/lib/ceedling/version.rb.erb +1 -1
- data/plugins/stdout_pretty_tests_report/assets/template.erb +13 -13
- data/release/build.info +1 -1
- data/release/version.info +1 -1
- data/spec/ceedling_spec.rb +14 -14
- data/spec/spec_system_helper.rb +6 -6
- data/vendor/cmock/examples/src/TimerInterruptConfigurator.h +1 -1
- data/vendor/cmock/release/build.info +1 -1
- data/vendor/unity/auto/generate_test_runner.rb +4 -4
- data/vendor/unity/examples/example_3/rakefile.rb +0 -1
- data/vendor/unity/src/unity.c +1 -2
- data/vendor/unity/src/unity.h +12 -47
- data/vendor/unity/src/unity_internals.h +60 -4
- data/vendor/unity/{Rakefile → test/rakefile} +1 -7
- data/vendor/unity/{rakefile_helper.rb → test/rakefile_helper.rb} +3 -3
- data/vendor/unity/{targets → test/targets}/clang_strict.yml +2 -2
- data/vendor/unity/{targets → test/targets}/gcc_32.yml +2 -2
- data/vendor/unity/{targets → test/targets}/gcc_64.yml +2 -2
- data/vendor/unity/{targets → test/targets}/gcc_auto_limits.yml +2 -2
- data/vendor/unity/{targets → test/targets}/gcc_auto_sizeof.yml +2 -2
- data/vendor/unity/{targets → test/targets}/gcc_auto_stdint.yml +2 -2
- data/vendor/unity/{targets → test/targets}/hitech_picc18.yml +55 -55
- data/vendor/unity/{targets → test/targets}/iar_arm_v4.yml +4 -4
- data/vendor/unity/{targets → test/targets}/iar_arm_v5.yml +4 -4
- data/vendor/unity/{targets → test/targets}/iar_arm_v5_3.yml +4 -4
- data/vendor/unity/{targets → test/targets}/iar_armcortex_LM3S9B92_v5_4.yml +6 -6
- data/vendor/unity/{targets → test/targets}/iar_cortexm3_v5.yml +3 -3
- data/vendor/unity/{targets → test/targets}/iar_msp430.yml +3 -3
- data/vendor/unity/{targets → test/targets}/iar_sh2a_v6.yml +3 -3
- data/vendor/unity/test/{test_generate_test_runner.rb → tests/test_generate_test_runner.rb} +0 -0
- data/vendor/unity/test/{testparameterized.c → tests/testparameterized.c} +0 -0
- data/vendor/unity/test/{testunity.c → tests/testunity.c} +0 -0
- metadata +36 -31
- checksums.yaml +0 -7
- data/vendor/unity/makefile +0 -37
@@ -1,8 +1,8 @@
|
|
1
1
|
tools_root: &tools_root 'C:\Program Files\IAR Systems\Embedded Workbench 4.0 Kickstart\'
|
2
2
|
compiler:
|
3
3
|
path: [*tools_root, 'arm\bin\iccarm.exe']
|
4
|
-
source_path: 'src\'
|
5
|
-
unit_tests_path: &unit_tests_path '
|
4
|
+
source_path: '..\src\'
|
5
|
+
unit_tests_path: &unit_tests_path 'tests\'
|
6
6
|
build_path: &build_path 'build\'
|
7
7
|
options:
|
8
8
|
- --dlib_config
|
@@ -14,7 +14,7 @@ compiler:
|
|
14
14
|
- --no_code_motion
|
15
15
|
- --no_tbaa
|
16
16
|
- --no_clustering
|
17
|
-
- --no_scheduling
|
17
|
+
- --no_scheduling
|
18
18
|
- --debug
|
19
19
|
- --cpu_mode thumb
|
20
20
|
- --endian little
|
@@ -86,4 +86,4 @@ simulator:
|
|
86
86
|
- sim
|
87
87
|
colour: true
|
88
88
|
:unity:
|
89
|
-
:plugins: []
|
89
|
+
:plugins: []
|
@@ -1,8 +1,8 @@
|
|
1
1
|
tools_root: &tools_root 'C:\Program Files\IAR Systems\Embedded Workbench 5.3\'
|
2
2
|
compiler:
|
3
3
|
path: [*tools_root, 'arm\bin\iccarm.exe']
|
4
|
-
source_path: 'src\'
|
5
|
-
unit_tests_path: &unit_tests_path '
|
4
|
+
source_path: '..\src\'
|
5
|
+
unit_tests_path: &unit_tests_path 'tests\'
|
6
6
|
build_path: &build_path 'build\'
|
7
7
|
options:
|
8
8
|
- --dlib_config
|
@@ -13,7 +13,7 @@ compiler:
|
|
13
13
|
- --no_code_motion
|
14
14
|
- --no_tbaa
|
15
15
|
- --no_clustering
|
16
|
-
- --no_scheduling
|
16
|
+
- --no_scheduling
|
17
17
|
- --debug
|
18
18
|
- --cpu_mode thumb
|
19
19
|
- --endian=little
|
@@ -76,4 +76,4 @@ simulator:
|
|
76
76
|
- sim
|
77
77
|
colour: true
|
78
78
|
:unity:
|
79
|
-
:plugins: []
|
79
|
+
:plugins: []
|
@@ -1,8 +1,8 @@
|
|
1
1
|
tools_root: &tools_root 'C:\Program Files\IAR Systems\Embedded Workbench 5.3\'
|
2
2
|
compiler:
|
3
3
|
path: [*tools_root, 'arm\bin\iccarm.exe']
|
4
|
-
source_path: 'src\'
|
5
|
-
unit_tests_path: &unit_tests_path '
|
4
|
+
source_path: '..\src\'
|
5
|
+
unit_tests_path: &unit_tests_path 'tests\'
|
6
6
|
build_path: &build_path 'build\'
|
7
7
|
options:
|
8
8
|
- --dlib_config
|
@@ -13,7 +13,7 @@ compiler:
|
|
13
13
|
- --no_code_motion
|
14
14
|
- --no_tbaa
|
15
15
|
- --no_clustering
|
16
|
-
- --no_scheduling
|
16
|
+
- --no_scheduling
|
17
17
|
- --debug
|
18
18
|
- --cpu_mode thumb
|
19
19
|
- --endian=little
|
@@ -76,4 +76,4 @@ simulator:
|
|
76
76
|
- sim
|
77
77
|
colour: true
|
78
78
|
:unity:
|
79
|
-
:plugins: []
|
79
|
+
:plugins: []
|
@@ -2,10 +2,10 @@
|
|
2
2
|
tools_root: &tools_root 'C:\Program Files (x86)\IAR Systems\Embedded Workbench 5.4 Kickstart\'
|
3
3
|
compiler:
|
4
4
|
path: [*tools_root, 'arm\bin\iccarm.exe']
|
5
|
-
source_path: 'src\'
|
6
|
-
unit_tests_path: &unit_tests_path '
|
5
|
+
source_path: '..\src\'
|
6
|
+
unit_tests_path: &unit_tests_path 'tests\'
|
7
7
|
build_path: &build_path 'build\'
|
8
|
-
options:
|
8
|
+
options:
|
9
9
|
- --diag_suppress=Pa050
|
10
10
|
#- --diag_suppress=Pe111
|
11
11
|
- --debug
|
@@ -27,7 +27,7 @@ compiler:
|
|
27
27
|
# - --no_code_motion
|
28
28
|
# - --no_tbaa
|
29
29
|
# - --no_clustering
|
30
|
-
# - --no_scheduling
|
30
|
+
# - --no_scheduling
|
31
31
|
|
32
32
|
includes:
|
33
33
|
prefix: '-I'
|
@@ -59,7 +59,7 @@ linker:
|
|
59
59
|
- --semihosting
|
60
60
|
- --entry __iar_program_start
|
61
61
|
- --config
|
62
|
-
- [*tools_root, 'arm\config\generic.icf']
|
62
|
+
- [*tools_root, 'arm\config\generic.icf']
|
63
63
|
# - ['C:\Temp\lm3s9b92.icf']
|
64
64
|
object_files:
|
65
65
|
path: *build_path
|
@@ -90,4 +90,4 @@ simulator:
|
|
90
90
|
#- sim
|
91
91
|
colour: true
|
92
92
|
:unity:
|
93
|
-
:plugins: []
|
93
|
+
:plugins: []
|
@@ -3,8 +3,8 @@
|
|
3
3
|
tools_root: &tools_root 'C:\Program Files\IAR Systems\Embedded Workbench 5.4\'
|
4
4
|
compiler:
|
5
5
|
path: [*tools_root, 'arm\bin\iccarm.exe']
|
6
|
-
source_path: 'src\'
|
7
|
-
unit_tests_path: &unit_tests_path '
|
6
|
+
source_path: '..\src\'
|
7
|
+
unit_tests_path: &unit_tests_path 'tests\'
|
8
8
|
build_path: &build_path 'build\'
|
9
9
|
options:
|
10
10
|
- --dlib_config
|
@@ -80,4 +80,4 @@ simulator:
|
|
80
80
|
- sim
|
81
81
|
colour: true
|
82
82
|
:unity:
|
83
|
-
:plugins: []
|
83
|
+
:plugins: []
|
@@ -8,8 +8,8 @@ core_config: &core_config [*core_root, 'config\']
|
|
8
8
|
|
9
9
|
compiler:
|
10
10
|
path: [*core_bin, 'icc430.exe']
|
11
|
-
source_path: 'src\'
|
12
|
-
unit_tests_path: &unit_tests_path '
|
11
|
+
source_path: '..\src\'
|
12
|
+
unit_tests_path: &unit_tests_path 'tests\'
|
13
13
|
build_path: &build_path 'build\'
|
14
14
|
options:
|
15
15
|
- --dlib_config
|
@@ -91,4 +91,4 @@ simulator:
|
|
91
91
|
- -d sim
|
92
92
|
colour: true
|
93
93
|
:unity:
|
94
|
-
:plugins: []
|
94
|
+
:plugins: []
|
@@ -1,8 +1,8 @@
|
|
1
1
|
tools_root: &tools_root 'C:\Program Files\IAR Systems\Embedded Workbench 6.0\'
|
2
2
|
compiler:
|
3
3
|
path: [*tools_root, 'sh\bin\iccsh.exe']
|
4
|
-
source_path: 'src\'
|
5
|
-
unit_tests_path: &unit_tests_path '
|
4
|
+
source_path: '..\src\'
|
5
|
+
unit_tests_path: &unit_tests_path 'tests\'
|
6
6
|
build_path: &build_path 'build\'
|
7
7
|
options:
|
8
8
|
- -e
|
@@ -82,4 +82,4 @@ simulator:
|
|
82
82
|
- sim
|
83
83
|
colour: true
|
84
84
|
:unity:
|
85
|
-
:plugins: []
|
85
|
+
:plugins: []
|
File without changes
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ceedling
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.15.
|
4
|
+
version: 0.15.3
|
5
|
+
prerelease:
|
5
6
|
platform: ruby
|
6
7
|
authors:
|
7
8
|
- Mike Karlesky, Mark VanderVoord
|
@@ -10,34 +11,38 @@ authors:
|
|
10
11
|
autorequire:
|
11
12
|
bindir: bin
|
12
13
|
cert_chain: []
|
13
|
-
date: 2014-07-
|
14
|
+
date: 2014-07-30 00:00:00.000000000 Z
|
14
15
|
dependencies:
|
15
16
|
- !ruby/object:Gem::Dependency
|
16
17
|
name: thor
|
17
18
|
requirement: !ruby/object:Gem::Requirement
|
19
|
+
none: false
|
18
20
|
requirements:
|
19
|
-
- - '>='
|
21
|
+
- - ! '>='
|
20
22
|
- !ruby/object:Gem::Version
|
21
23
|
version: 0.14.5
|
22
24
|
type: :runtime
|
23
25
|
prerelease: false
|
24
26
|
version_requirements: !ruby/object:Gem::Requirement
|
27
|
+
none: false
|
25
28
|
requirements:
|
26
|
-
- - '>='
|
29
|
+
- - ! '>='
|
27
30
|
- !ruby/object:Gem::Version
|
28
31
|
version: 0.14.5
|
29
32
|
- !ruby/object:Gem::Dependency
|
30
33
|
name: rake
|
31
34
|
requirement: !ruby/object:Gem::Requirement
|
35
|
+
none: false
|
32
36
|
requirements:
|
33
|
-
- - '>='
|
37
|
+
- - ! '>='
|
34
38
|
- !ruby/object:Gem::Version
|
35
39
|
version: 0.8.7
|
36
40
|
type: :runtime
|
37
41
|
prerelease: false
|
38
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
none: false
|
39
44
|
requirements:
|
40
|
-
- - '>='
|
45
|
+
- - ! '>='
|
41
46
|
- !ruby/object:Gem::Version
|
42
47
|
version: 0.8.7
|
43
48
|
description: Ceedling provides a set of tools to deploy its guts in a folder or which
|
@@ -808,23 +813,6 @@ files:
|
|
808
813
|
- vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c
|
809
814
|
- vendor/unity/extras/fixture/test/unity_output_Spy.c
|
810
815
|
- vendor/unity/extras/fixture/test/unity_output_Spy.h
|
811
|
-
- vendor/unity/makefile
|
812
|
-
- vendor/unity/Rakefile
|
813
|
-
- vendor/unity/rakefile_helper.rb
|
814
|
-
- vendor/unity/targets/clang_strict.yml
|
815
|
-
- vendor/unity/targets/gcc_32.yml
|
816
|
-
- vendor/unity/targets/gcc_64.yml
|
817
|
-
- vendor/unity/targets/gcc_auto_limits.yml
|
818
|
-
- vendor/unity/targets/gcc_auto_sizeof.yml
|
819
|
-
- vendor/unity/targets/gcc_auto_stdint.yml
|
820
|
-
- vendor/unity/targets/hitech_picc18.yml
|
821
|
-
- vendor/unity/targets/iar_arm_v4.yml
|
822
|
-
- vendor/unity/targets/iar_arm_v5.yml
|
823
|
-
- vendor/unity/targets/iar_arm_v5_3.yml
|
824
|
-
- vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml
|
825
|
-
- vendor/unity/targets/iar_cortexm3_v5.yml
|
826
|
-
- vendor/unity/targets/iar_msp430.yml
|
827
|
-
- vendor/unity/targets/iar_sh2a_v6.yml
|
828
816
|
- vendor/unity/test/expectdata/testsample_cmd.c
|
829
817
|
- vendor/unity/test/expectdata/testsample_def.c
|
830
818
|
- vendor/unity/test/expectdata/testsample_mock_cmd.c
|
@@ -841,36 +829,53 @@ files:
|
|
841
829
|
- vendor/unity/test/expectdata/testsample_run1.c
|
842
830
|
- vendor/unity/test/expectdata/testsample_run2.c
|
843
831
|
- vendor/unity/test/expectdata/testsample_yaml.c
|
844
|
-
- vendor/unity/test/
|
832
|
+
- vendor/unity/test/rakefile
|
833
|
+
- vendor/unity/test/rakefile_helper.rb
|
834
|
+
- vendor/unity/test/targets/clang_strict.yml
|
835
|
+
- vendor/unity/test/targets/gcc_32.yml
|
836
|
+
- vendor/unity/test/targets/gcc_64.yml
|
837
|
+
- vendor/unity/test/targets/gcc_auto_limits.yml
|
838
|
+
- vendor/unity/test/targets/gcc_auto_sizeof.yml
|
839
|
+
- vendor/unity/test/targets/gcc_auto_stdint.yml
|
840
|
+
- vendor/unity/test/targets/hitech_picc18.yml
|
841
|
+
- vendor/unity/test/targets/iar_arm_v4.yml
|
842
|
+
- vendor/unity/test/targets/iar_arm_v5.yml
|
843
|
+
- vendor/unity/test/targets/iar_arm_v5_3.yml
|
844
|
+
- vendor/unity/test/targets/iar_armcortex_LM3S9B92_v5_4.yml
|
845
|
+
- vendor/unity/test/targets/iar_cortexm3_v5.yml
|
846
|
+
- vendor/unity/test/targets/iar_msp430.yml
|
847
|
+
- vendor/unity/test/targets/iar_sh2a_v6.yml
|
845
848
|
- vendor/unity/test/testdata/mocksample.c
|
846
849
|
- vendor/unity/test/testdata/sample.yml
|
847
850
|
- vendor/unity/test/testdata/testsample.c
|
848
|
-
- vendor/unity/test/
|
849
|
-
- vendor/unity/test/
|
851
|
+
- vendor/unity/test/tests/test_generate_test_runner.rb
|
852
|
+
- vendor/unity/test/tests/testparameterized.c
|
853
|
+
- vendor/unity/test/tests/testunity.c
|
850
854
|
homepage: http://throwtheswitch.org/
|
851
855
|
licenses:
|
852
856
|
- MIT
|
853
|
-
metadata: {}
|
854
857
|
post_install_message:
|
855
858
|
rdoc_options: []
|
856
859
|
require_paths:
|
857
860
|
- lib
|
858
861
|
- vendor/cmock/lib
|
859
862
|
required_ruby_version: !ruby/object:Gem::Requirement
|
863
|
+
none: false
|
860
864
|
requirements:
|
861
|
-
- - '>='
|
865
|
+
- - ! '>='
|
862
866
|
- !ruby/object:Gem::Version
|
863
867
|
version: '0'
|
864
868
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
869
|
+
none: false
|
865
870
|
requirements:
|
866
|
-
- - '>='
|
871
|
+
- - ! '>='
|
867
872
|
- !ruby/object:Gem::Version
|
868
873
|
version: '0'
|
869
874
|
requirements: []
|
870
875
|
rubyforge_project: ceedling
|
871
|
-
rubygems_version:
|
876
|
+
rubygems_version: 1.8.23
|
872
877
|
signing_key:
|
873
|
-
specification_version:
|
878
|
+
specification_version: 3
|
874
879
|
summary: Ceedling is a set of tools for the automation of builds and test running
|
875
880
|
for C
|
876
881
|
test_files:
|
checksums.yaml
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
---
|
2
|
-
SHA1:
|
3
|
-
metadata.gz: e64dca394cc4f8af27bfea39ebd102a923101893
|
4
|
-
data.tar.gz: 8c73db3acfec26c843fe9ac484559fbcd6477726
|
5
|
-
SHA512:
|
6
|
-
metadata.gz: 7628d838e1b952a11adf2f1182c323004506ff897f2b59b423614e9a9ecd1833cfe0261888098c5f4a478c0c08bbad291cc24957e2d1c16ff4c6a297eac5a106
|
7
|
-
data.tar.gz: 71fe82714666bb2eb9fa05a45c6576d6ce876b687cd4ce1e877169c1bf18158e79059abad5b4d0822171fd818a7476e44a24fd91e651ae94a9808f992cdf84a7
|
data/vendor/unity/makefile
DELETED
@@ -1,37 +0,0 @@
|
|
1
|
-
# ==========================================
|
2
|
-
# Unity Project - A Test Framework for C
|
3
|
-
# Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
|
4
|
-
# [Released under MIT License. Please refer to license.txt for details]
|
5
|
-
# ==========================================
|
6
|
-
|
7
|
-
C_COMPILER=gcc
|
8
|
-
TARGET_BASE = testunity
|
9
|
-
ifeq ($(OS),Windows_NT)
|
10
|
-
TARGET_EXTENSION=.exe
|
11
|
-
else
|
12
|
-
TARGET_EXTENSION=.out
|
13
|
-
endif
|
14
|
-
TARGET = $(TARGET_BASE)$(TARGET_EXTENSION)
|
15
|
-
OUT_FILE=-o $(TARGET)
|
16
|
-
SRC_FILES=src/unity.c test/testunity.c build/testunity_Runner.c
|
17
|
-
INC_DIRS=-Isrc
|
18
|
-
SYMBOLS=-DTEST -DUNITY_SUPPORT_64 -DUNITY_INCLUDE_DOUBLE
|
19
|
-
|
20
|
-
ifeq ($(OSTYPE),cygwin)
|
21
|
-
CLEANUP = rm -f build/*.o ; rm -f $(TARGET) ; mkdir -p build
|
22
|
-
else ifeq ($(OS),Windows_NT)
|
23
|
-
CLEANUP = del /F /Q build\* && del /F /Q $(TARGET)
|
24
|
-
else
|
25
|
-
CLEANUP = rm -f build/*.o ; rm -f $(TARGET) ; mkdir -p build
|
26
|
-
endif
|
27
|
-
|
28
|
-
all: clean default
|
29
|
-
|
30
|
-
default:
|
31
|
-
ruby auto/generate_test_runner.rb test/testunity.c build/testunity_Runner.c
|
32
|
-
$(C_COMPILER) $(INC_DIRS) $(SYMBOLS) $(SRC_FILES) $(OUT_FILE)
|
33
|
-
./$(TARGET)
|
34
|
-
|
35
|
-
clean:
|
36
|
-
$(CLEANUP)
|
37
|
-
|