added support: 'struct' qualifiers for pointers in argument lists, const function pointers, added more type tests

git-svn-id: http://cmock.svn.sourceforge.net/svnroot/cmock/trunk@97 bf332499-1b4d-0410-844d-d2d48d5cc64c
This commit is contained in:
mkarlesky
2009-05-15 00:57:26 +00:00
parent f63c2b4fc8
commit 153b8b9000
7 changed files with 380 additions and 195 deletions
+1 -2
View File
@@ -1,4 +1,3 @@
ROOT_PATH = File.expand_path(File.dirname(__FILE__) + "/../")
# Setup our load path:
[
@@ -6,7 +5,7 @@ ROOT_PATH = File.expand_path(File.dirname(__FILE__) + "/../")
'vendor/gems/polyglot-0.2.5/lib/',
'vendor/gems/treetop-1.2.5/lib/',
].each do |dir|
$LOAD_PATH.unshift(File.join(ROOT_PATH, dir))
$LOAD_PATH.unshift( File.join( File.expand_path(File.dirname(__FILE__) + "/../"), dir) )
end
require 'rubygems'
+1 -2
View File
@@ -1,4 +1,3 @@
ROOT_PATH = File.expand_path(File.dirname(__FILE__) + "/../")
# Setup our load path:
[
@@ -10,5 +9,5 @@ ROOT_PATH = File.expand_path(File.dirname(__FILE__) + "/../")
'vendor/gems/treetop-1.2.5/lib/',
'test/system/'
].each do |dir|
$LOAD_PATH.unshift(File.join(ROOT_PATH, dir))
$LOAD_PATH.unshift( File.join( File.expand_path(File.dirname(__FILE__) + "/../"), dir) )
end