- 01 3月, 2014 1 次提交
-
-
由 Mark VanderVoord 提交于
-
- 25 2月, 2014 1 次提交
-
-
由 Mark VanderVoord 提交于
Print an EOL before printing the TestResult while executing the spec (Thanks Jakob!)
-
- 16 2月, 2014 1 次提交
-
-
由 Jakob Holderbaum 提交于
By printing this newline, the filepath of the failing assertion does not get preceded by the dot which represents a running test. This gives the advantage, that the complete output of unity can be used as it is with a makefile in vim. Every error gets displayed in the quickfix and you can jump appropiately.
-
- 20 12月, 2013 2 次提交
-
-
由 Mark VanderVoord 提交于
Initial import of report parser.
-
由 unknown 提交于
This parser will scan an output file, pull all Unity related tests and summarize them in a report to console or put them in an XML file for use with Jenkins
-
- 23 9月, 2013 3 次提交
-
-
-
由 Mark VanderVoord 提交于
build on cygwin
-
由 Mark VanderVoord 提交于
-
- 22 9月, 2013 4 次提交
-
-
由 Mark VanderVoord 提交于
-
-
由 Mark VanderVoord 提交于
copy include statements from test file to test runner (excluding cmock.h and unity.h) to better handle custom types in parameterized tests (Thanks Shelly)
-
由 Mark VanderVoord 提交于
-
- 17 9月, 2013 3 次提交
-
-
由 Mark VanderVoord 提交于
Allow pointer types to have an attribute (file under "stupid things we do to keep poor compilers happy")
-
由 Mark VanderVoord 提交于
Fix unit tests for TEST_ASSERT_EQUAL_HEX_ARRAY on 16-bit architectures (Thanks Antony!)
-
由 Antony Male 提交于
Microchip's XC16 and friends, when used with dsPICs, require that all pointers to memory which could possibly be in EDS space by adorned with __eds__, e.g. __eds__ int* p_int Adding the macro UNITY_PTR_ATTRIBUTE allows Unity's pointers to be decorated with whatever ridiculous attributes the compiler requires.
-
- 15 7月, 2013 1 次提交
-
-
由 Mark VanderVoord 提交于
Fixed examples build error (rake)
-
- 14 7月, 2013 1 次提交
-
-
由 Warwick Stone 提交于
* Build directory created if it doesn't exist. This fixes a gcc "no such file or directory" error when running rake
-
- 28 6月, 2013 5 次提交
-
-
由 Mark VanderVoord 提交于
Fix tests testing TEST_ASSERT_EQUAL_MEMORY_ARRAY on 16-bit platforms. (Thanks Antony!)
-
由 Mark VanderVoord 提交于
Fix TEST_ASSERT_EQUAL_INT_ARRAY for int sizes other than 32 bits (Thanks Canton7)
-
由 Antony Male 提交于
The tests which exercise TEST_ASSERT_EQUAL_MEMORY_ARRAY use int arrays, and hard-code the size of each element as 4 bytes. This is of course untrue on 16-bit platforms. Replace this hard-coded value with sizeof(int).
-
由 Antony Male 提交于
Previously, TEST_ASSERT_EQUAL_HEX_ARRAY was being called, and passed arrays of type 'unsigned int'. TEST_ASSERT_EQUAL_HEX_ARRAY is an alias for TEST_ASSERT_EQUAL_HEX32_ARRAY in *all* cases (and is documented as such), while 'unsigned int' is 16 bits on some platforms. Unsurprisingly this caused some tests to fail. Fix by replacing the 'unsigned int' declarations with '_UU32'.
-
由 Antony Male 提交于
This patch fixes testEqualIntArrays in the unity test suite on 16-bit architectures. TEST_ASSERT_EQUAL_INT_ARRAY calls UnityAssertEqualIntArray with 'style' set to UNITY_DISPLAY_STYLE_INT. UNITY_DISPLAY_STYLE_INT is defined as UNITY_DISPLAY_STYLE_AUTO + UNITY_DISPLAY_STYLE_INT{16,32,64} (depending on the int width). However, the switch statement in UnityAssertEqualIntArray has special cases for the width-specific display styles, but these comparisons are carried out without clearing the UNITY_DISPLAY_STYLE_AUTO flag. This means that if 'style' is UNITY_DISPLAY_STYLE_INT, and the int width is, say, 16, bits, the default case will be hit, and elements compared as if they were 32 bits wide. Unsurprisingly this causes a failure in the test named above.
-
- 22 6月, 2013 1 次提交
-
-
由 shellyniz 提交于
Bug - compilation error when using parametrized tests with user defined types. When using TEST_CASE and parametrised test and passing parameters which are of user defined types, the test_runner does not compile because it does not recognize the user defined types. Test runner should copy the include statements from the test file
-
- 13 4月, 2013 2 次提交
-
-
由 Stephen Hawley 提交于
-
由 U-AM\505903 提交于
-
- 25 3月, 2013 2 次提交
-
-
由 John Van Enk 提交于
fix bug in target execsion in example makefile
-
由 Weihong.Guan 提交于
-
- 14 2月, 2013 5 次提交
-
-
由 Job Vranish 提交于
-
由 Job Vranish 提交于
-
由 Job Vranish 提交于
-
由 Job Vranish 提交于
-
由 Job Vranish 提交于
-
- 07 2月, 2013 4 次提交
-
-
由 Mark VanderVoord 提交于
Fix missing #define when UNITY_EXCLUDE_FLOAT is used
-
由 Mark VanderVoord 提交于
Fixing wrong index on string array inequality.
-
由 Mark VanderVoord 提交于
Added gcc 64-bit for rake
-
由 Mark VanderVoord 提交于
The `build` directory is not created when running make, which yields an error.
-
- 06 2月, 2013 1 次提交
-
-
由 James Hood 提交于
-
- 05 2月, 2013 1 次提交
-
-
由 Alex Rodriguez 提交于
-
- 01 2月, 2013 1 次提交
-
-
由 Chris Dew 提交于
The `build` directory is not created when running make, which yields an error.
-
- 19 1月, 2013 1 次提交
-
-
由 Alex Rodriguez 提交于
-