- 29 11月, 2018 2 次提交
-
-
由 John Lindgren 提交于
-
由 John Lindgren 提交于
-
- 11 2月, 2018 1 次提交
-
-
由 Jeremy Hannon 提交于
parameter names should match between declaration and definition. (MISRA 2004 rule 16.4)
-
- 10 9月, 2017 1 次提交
-
-
由 balaksh 提交于
-
- 09 9月, 2017 1 次提交
-
-
由 Mark VanderVoord 提交于
-
- 04 8月, 2017 1 次提交
-
-
由 Aviv Palivoda 提交于
-
- 02 8月, 2017 1 次提交
-
-
由 Aviv Palivoda 提交于
-
- 26 6月, 2017 1 次提交
-
-
由 Mark VanderVoord 提交于
- Fixed some style issues.
-
- 29 3月, 2017 1 次提交
-
-
由 Mark VanderVoord 提交于
-
- 28 3月, 2017 2 次提交
-
-
由 Mark VanderVoord 提交于
-
由 Mark VanderVoord 提交于
Starting to enforce our coding style. The first step is that we’ve pulled in Rubocop to check out Ruby syntax. There is likely a bit of customization to do yet AND there is definitely that backlog of todo’s that we just told it to ignore.
-
- 21 3月, 2017 1 次提交
-
-
由 Mark VanderVoord 提交于
-
- 19 1月, 2017 1 次提交
-
-
由 jsalling 提交于
Used clang-format, which produces noise on stuff you don't care about and requires setting it up to match the existing code base. Kept the potentially useful changes, discarded the rest, some manual tweaking required. It did catch lots of pesky indentation mistakes.
-
- 18 1月, 2017 1 次提交
-
-
由 jsalling 提交于
-
- 15 1月, 2017 1 次提交
-
-
由 jsalling 提交于
-
- 29 12月, 2016 1 次提交
-
-
由 jsalling 提交于
Remove UNITY_FIXTURES option, which was probably not doing what was originally indended. It was suppressing the test name even in quiet mode.
-
- 24 12月, 2016 1 次提交
-
-
由 jsalling 提交于
-
- 29 11月, 2016 1 次提交
-
-
由 Mark VanderVoord 提交于
Revised internal type naming scheme to better sandbox Unity away from everything else. Sure, short was nice, but not at the expense of naming collisions.
-
- 11 10月, 2016 1 次提交
-
-
由 jsalling 提交于
-
- 26 9月, 2016 1 次提交
-
-
由 Max Payne 提交于
Mangling issues, as always.
-
- 31 8月, 2016 1 次提交
-
-
由 jsalling 提交于
Remove stdint.h from the C89 build due to -pedantic warnings from type 'long long' and constants like UINTPTR_MAX = 18446744073709551615ULL
-
- 24 8月, 2016 1 次提交
-
-
由 jsalling 提交于
-
- 22 8月, 2016 3 次提交
- 09 8月, 2016 1 次提交
-
- 29 7月, 2016 1 次提交
-
-
由 Bryon Gloden, CISSP® 提交于
I believe if realloc() returns a pointer to a different location, the old location is freed. However, the pointer 'n1' is not freed if realloc fails to obtain a large enough block of memory and returns NULL. (more details on [StackOverflow](http://stackoverflow.com/a/16676964)).
-
- 27 7月, 2016 4 次提交
-
-
由 Bryon Gloden, CISSP® 提交于
Sorry @mvandervoord -- not your code, your repository
😁 Regarding the double free, cppcheck has a check for that too (just saying)👍 -
由 Bryon Gloden, CISSP® 提交于
Free guard if UNITY_EXCLUDE_STDLIB_MALLOC is not defined.
👍 Thanks @ for the hint. -
由 Bryon Gloden, CISSP® 提交于
[../Unity-master/extras/fixture/test/unity_fixture_Test.c:530]: (error) Deallocating a deallocated pointer: n1 This solution from Daniel Fischer was helpful in fixing the error because if realloc returns a pointer to a different location, the old location is freed. Found by https://github.com/bryongloden/cppcheck
-
由 Bryon Gloden, CISSP® 提交于
[../Unity-master/extras/fixture/src/unity_fixture.c:210]: (error) Memory leak: guard Found by https://github.com/bryongloden/cppcheck
-
- 06 5月, 2016 1 次提交
-
-
由 Mark VanderVoord 提交于
-
- 01 3月, 2016 2 次提交
- 27 2月, 2016 1 次提交
-
-
由 jsalling 提交于
Add extern UnityFixture in internals header. Add C89 target in Makefile clang will show these warnings but can suppress "//" with -Wno-comment.
-
- 26 2月, 2016 2 次提交
-
-
由 jsalling 提交于
By removing the call to the Conclude function the code is simplified and doesn't depend on global state updates. Tests that are ignored after the testBody is called still output the right EOL.
-
由 jsalling 提交于
This fixes #168. See that github.com issue for more discussion. Allows the tests to build when putchar() is defined as a macro with parenthesis around it, as in the ARM embedded gcc compiler.
-
- 25 2月, 2016 1 次提交
-
-
由 jsalling 提交于
-
- 24 2月, 2016 1 次提交
-
-
由 jsalling 提交于
Using gcc 4.8 on Ubuntu 14
-
- 18 2月, 2016 1 次提交
-
-
由 jsalling 提交于
Gets rid of warnings about extern with clang's -Weverything
-