-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ubuntu
committed
May 3, 2024
1 parent
1e292e4
commit 30badd9
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule CMock
updated
24 files
+42 −0 | .github/workflows/main.yml | |
+1 −0 | .gitignore | |
+0 −28 | .travis.yml | |
+9 −4 | README.md | |
+26 −1 | docs/CMock_Summary.md | |
+16 −9 | lib/cmock.rb | |
+1 −0 | lib/cmock_config.rb | |
+27 −9 | lib/cmock_generator.rb | |
+1 −0 | lib/cmock_generator_plugin_cexception.rb | |
+85 −0 | lib/cmock_generator_plugin_ignore_stateless.rb | |
+4 −4 | lib/cmock_generator_plugin_return_thru_ptr.rb | |
+6 −3 | lib/cmock_generator_utils.rb | |
+40 −14 | lib/cmock_header_parser.rb | |
+1 −37 | meson.build | |
+13 −7 | src/cmock.h | |
+1 −1 | src/meson.build | |
+325 −0 | test/system/test_interactions/ignore_and_return_stateless.yml | |
+3 −0 | test/unit/cmock_generator_main_test.rb | |
+12 −0 | test/unit/cmock_generator_plugin_cexception_test.rb | |
+116 −0 | test/unit/cmock_generator_plugin_ignore_stateless_test.rb | |
+4 −4 | test/unit/cmock_generator_plugin_return_thru_ptr_test.rb | |
+14 −9 | test/unit/cmock_generator_utils_test.rb | |
+129 −3 | test/unit/cmock_header_parser_test.rb | |
+2 −1 | test/unit/cmock_plugin_manager_test.rb |