- added strict ordering support option

- updated yaml config file to use symbol for root (to be consistent with other places).


git-svn-id: http://cmock.svn.sourceforge.net/svnroot/cmock/trunk@72 bf332499-1b4d-0410-844d-d2d48d5cc64c
This commit is contained in:
mvandervoord
2009-04-11 03:06:09 +00:00
parent 66363823bb
commit 8fb0ca9d49
17 changed files with 250 additions and 143 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ class CMockUnityHelperParser
def get_helper(ctype)
lookup = ctype.gsub(/const\s+/,'').strip.gsub(/\s+/,'_')
return @c_types[lookup] if (@c_types[lookup])
raise("Don't know how to test #{ctype} and memory tests are disabled!") unless @config.memcpy_if_unknown
raise("Don't know how to test #{ctype} and memory tests are disabled!") unless @config.memcmp_if_unknown
return 'TEST_ASSERT_EQUAL_MEMORY_MESSAGE'
end