- 31 10月, 2012 4 次提交
-
-
由 Ross Ryles 提交于
-
由 Ross Ryles 提交于
-
由 Ross Ryles 提交于
-
由 Ross Ryles 提交于
UnityAssertFloatsWithin now fails any test where either a NaN or Infinite value is passed as expected or actual.
-
- 30 10月, 2012 2 次提交
-
-
由 Ross Ryles 提交于
-
由 Ross Ryles 提交于
-
- 02 10月, 2012 1 次提交
-
-
由 John Van Enk 提交于
-
- 29 8月, 2012 1 次提交
-
-
由 Alex Rodriguez 提交于
The reason that TEST_ASSERT_xyz_WITHIN_MESSAGE() family of functions doesn't print any message is because is calling a re-use macro from the TEST_ASSERT_xyz_WITHIN() family of functions. Due this two functions in unity.h calls the same function from unity_internals.h, the message is nullified at this point. The issue is fix by passing _message_ arg to the 4th argument of *UnityAssertNumbersWithin()* function.
-
- 28 5月, 2012 4 次提交
-
-
由 mvandervoord 提交于
git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@142 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
-
由 mvandervoord 提交于
git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@140 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
-
由 mvandervoord 提交于
git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@139 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
-
由 mvandervoord 提交于
- fixed error in _INT macro size guessing git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@138 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
-
- 27 4月, 2012 2 次提交
-
-
由 Scott Vokes 提交于
-
由 Scott Vokes 提交于
Fixes failing test cases on 64-bit OSX: pointers to local variables were being converted to U32s before comparison.
-
- 03 1月, 2012 1 次提交
-
-
由 mvandervoord 提交于
- fixed obj_file sorting in rakefiles - gave better anchors for gcc to grab on test pass/fail by breaking them out as functions - fixed minor type issues git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@137 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
-
- 11 10月, 2011 1 次提交
-
-
由 mvandervoord 提交于
- ignore comments in test parser - fixed a couple bugs in 16-bit support - fixed minor compiler errors for less lenient compilers - fixed error in docs. - renamed link to link_it in rakefiles to avoid collision in new versions of rake git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@136 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
-
- 14 5月, 2011 1 次提交
-
-
由 mvandervoord 提交于
- cleaned up pointer support to handle arrays and to give error when you have an illegal configuration git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@135 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
-
- 03 5月, 2011 1 次提交
-
-
由 mvandervoord 提交于
- rolled in DOUBLE support from Mark Vismer (thanks!) git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@134 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
-
- 20 4月, 2011 1 次提交
-
-
由 mvandervoord 提交于
- protect against ints that only have differences in higher nibbles that shouldn't be part of comparison git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@130 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
-
- 01 4月, 2011 1 次提交
-
-
由 mvandervoord 提交于
git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@127 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
-
- 23 3月, 2011 2 次提交
-
-
由 mkarlesky 提交于
git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@126 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
-
由 mvandervoord 提交于
git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@125 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
-
- 05 3月, 2011 1 次提交
-
-
由 mvandervoord 提交于
git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@123 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
-
- 03 3月, 2011 1 次提交
-
-
由 mvandervoord 提交于
git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@121 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
-
- 18 2月, 2011 1 次提交
-
-
由 mvandervoord 提交于
- added a couple of user-submitted ports git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@119 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
-
- 05 2月, 2011 1 次提交
-
-
由 mvandervoord 提交于
- removed TEST_CASE(...) macro from Unity because it's not compatible with a number of compilers. User will need to define it themselves to use it. (it's an empty define anyway) git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@117 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
-
- 24 1月, 2011 1 次提交
-
-
由 mvandervoord 提交于
- NOTE: now you need to define UNITY_SUPPORT_TEST_CASES to use TEST_CASE. This is to avoid problems with compilers that don't support varargs in macros. git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@116 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
-
- 14 1月, 2011 1 次提交
-
-
由 mvandervoord 提交于
- version file is just going to have major and minor... leave build for the other file (which will hopefully be automatic someday). - only extern the output function when it's custom. git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@113 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
-
- 01 12月, 2010 1 次提交
-
-
由 mvandervoord 提交于
- fixed a few bugs in fixtures to get it to pass against our standard compilers - added extern of OUTPUT_CHAR method to keep compilers from complaining git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@107 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
-
- 27 11月, 2010 1 次提交
-
-
由 mvandervoord 提交于
- updated docs to better discuss generator options. git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@104 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
-
- 11 11月, 2010 1 次提交
-
-
由 mvandervoord 提交于
git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@103 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
-
- 10 11月, 2010 2 次提交
-
-
由 mvandervoord 提交于
git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@102 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
-
由 mvandervoord 提交于
- updated generator to lay simple foundation for parameterized test support git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@101 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
-
- 22 10月, 2010 1 次提交
-
-
由 mvandervoord 提交于
git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@100 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
-
- 07 9月, 2010 2 次提交
-
-
由 mvandervoord 提交于
git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@93 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
-
由 mvandervoord 提交于
- renamed 'bit' variable to 'current_bit' to avoid name collision with some special compilers (HiTech for PIC) git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@92 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
-
- 24 8月, 2010 1 次提交
-
-
由 mvandervoord 提交于
- removed pointless braces in a couple of macros git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@91 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
-
- 13 8月, 2010 1 次提交
-
-
由 mvandervoord 提交于
- test executable returns number of failures as exit status - caught up lame text docs git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@90 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
-
- 31 7月, 2010 1 次提交
-
-
由 mkarlesky 提交于
git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@87 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
-
- 30 7月, 2010 1 次提交
-
-
由 mvandervoord 提交于
- fixed a silly mistake where TEST_IGNORE was accepting a message argument when only TEST_IGNORE_MESSAGE should have been git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@86 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
-