Re: Testing C functions using OCUnit

2009-02-15 Thread Timothy Reaves
On Feb 15, 2009, at 1:32 PM, Martin Redington wrote: In my projects, I tend to define methods which need access to member variables as class methods, and related functions, which do not need "direct" access to any internal object data, as C functions, like the simple example below. @implementa

Re: Testing C functions using OCUnit

2009-02-15 Thread Martin Redington
Thanks very much for the quick reply. It looks like the code generation option "symbols hidden by default" is the one that needs to be turned off. I was looking under "stripping" before. After turning that setting off, 'nm -m' reports 1f9c (__TEXT,__text) external _SomeFunction instead of 0

Re: Testing C functions using OCUnit

2009-02-15 Thread Greg Parker
On Feb 15, 2009, at 10:32 AM, Martin Redington wrote: In my projects, I tend to define methods which need access to member variables as class methods, and related functions, which do not need "direct" access to any internal object data, as C functions, like the simple example below. @implement