mirror of
https://github.com/ThrowTheSwitch/CMock.git
synced 2026-09-16 07:09:57 +00:00
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:
@@ -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,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
|
||||
|
||||
Reference in New Issue
Block a user