[Aceunit-commit] SF.net SVN: aceunit: [20] trunk/src/native/AceUnit.h
Status: Beta
Brought to you by:
christianhujer
From: <chr...@us...> - 2007-10-07 14:10:32
|
Revision: 20 http://aceunit.svn.sourceforge.net/aceunit/?rev=20&view=rev Author: christianhujer Date: 2007-10-07 07:10:33 -0700 (Sun, 07 Oct 2007) Log Message: ----------- Fixed bug: macro TM didn't match TestCase_t. Modified Paths: -------------- trunk/src/native/AceUnit.h Modified: trunk/src/native/AceUnit.h =================================================================== --- trunk/src/native/AceUnit.h 2007-10-07 14:09:30 UTC (rev 19) +++ trunk/src/native/AceUnit.h 2007-10-07 14:10:33 UTC (rev 20) @@ -198,4 +198,8 @@ /** Define a test case (pair of method's function pointer and name). * @param X test case to define */ -#define TM(X) { &X, "X" } +#ifdef ACEUNIT_EMBEDDED +// TODO +#else +#define TM(X) { "X", &X } +#endif This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |