Bump dependencies.

Bump version.
Fix broken script.
This commit is contained in:
Mark VanderVoord
2026-08-25 11:40:40 -04:00
parent cdd115dcb9
commit f2a70b41bb
4 changed files with 7 additions and 6 deletions
+4 -3
View File
@@ -137,10 +137,11 @@ File.open(TEST_MAKEFILE, 'w') do |mkfile|
mkfile.puts ''
# Collect mocks to generate
system_mocks = cfg[:includes][:system].select { |name| name =~ MOCK_MATCHER }
raise 'Mocking of system headers is not yet supported!' unless system_mocks.empty?
local_mocks = cfg[:includes][:headers].select do |name|
raise 'Mocking of system headers is not yet supported!' if name =~ /^</
local_mocks = cfg[:includes][:local].select { |name| name =~ MOCK_MATCHER }
(name =~ MOCK_MATCHER)
end
module_names_to_mock = local_mocks.map { |name| name.sub(/#{MOCK_PREFIX}/, '').to_s }
headers_to_mock = []
+1 -1
View File
@@ -12,7 +12,7 @@
#define CMOCK_VERSION_MAJOR 2
#define CMOCK_VERSION_MINOR 7
#define CMOCK_VERSION_BUILD 0
#define CMOCK_VERSION_BUILD 2
#define CMOCK_VERSION ((CMOCK_VERSION_MAJOR << 16) | (CMOCK_VERSION_MINOR << 8) | CMOCK_VERSION_BUILD)
/* should be big enough to index full range of CMOCK_MEM_MAX */
+1 -1