Commit Graph

  • 3581ebb69e Merge pull request #222 from forGGe/missing_c_linkage Mark VanderVoord 2016-09-26 08:43:53 -0400
  • a8e799b066
    Fix fixture using from C++ sources Max Payne 2016-09-25 22:25:32 +0300
  • dce6d329ff Finished fixing floating point comparisons. We have streamlined how floats and doubles are checked, but we still can't compare them for equality directly. So we're directly testing for infinite and NaN before checking diffs. Also, we've officially decided that for testing purposes NaN shall equal NaN, +Inf shall equal +Inf, and -Inf shall equal -Inf. It's what most people expect during a test. Mark VanderVoord 2016-09-22 08:35:22 -0400
  • 0f07adfa00 Merge pull request #202 from kroesche/feature/fix_exclude_fp_warnings Mark VanderVoord 2016-09-21 20:53:45 -0400
  • 7dc17efbb3 Merge pull request #215 from jsalling/bugfix/inf-equals-inf Mark VanderVoord 2016-09-21 20:52:58 -0400
  • 71f2e0e6b3 Merge pull request #221 from robobrobro/master Mark VanderVoord 2016-09-21 15:55:41 -0400
  • bc4da247b5 Do not match strings across newlines L.J. Hill 2016-09-21 15:10:43 -0400
  • 9caae856c4 Test generator: scrub strings after comments L.J. Hill 2016-09-21 14:10:35 -0400
  • 693169eddf Merge pull request #218 from 2trill2spill/master Mark VanderVoord 2016-09-20 14:31:45 -0400
  • 95435afa4e Merge pull request #214 from jsalling/feature/c-strings Mark VanderVoord 2016-09-07 07:48:09 -0400
  • e12cef36e2 Don't need to ignore unused functions on linux because I reverted the static commit. nah 2016-09-04 10:47:35 -0500
  • 8e6716645e Revert setting functions to static. nah 2016-09-04 10:38:40 -0500
  • 2d98ed6afb Merge branch 'build' nah 2016-09-04 10:35:02 -0500
  • 7ee9bc3ecd Ignore missing prototype warning. nah 2016-09-04 10:31:57 -0500
  • 794e533ab5 Ignore unused functions on linux. nah 2016-09-04 10:25:31 -0500
  • f0f9f20421 Set functions that are only used within testunity to static. nah 2016-09-04 10:21:06 -0500
  • 7552c187fb Ignore missing noreturn and unused functions. nah 2016-09-04 10:20:31 -0500
  • 65f0febf03 Ignore padding and float to double implicit warning. nah 2016-09-04 09:55:49 -0500
  • 906447f13f Don't need to print out rake's version anymore. nah 2016-09-04 09:43:25 -0500
  • 1dcf902ec2 Don't need sudo on Linux so remove it. nah 2016-09-04 09:40:30 -0500
  • f255511a7c Test on both Linux and OSX. nah 2016-09-04 09:34:59 -0500
  • 647c846f9f Set CFLAGS differently for linux and osx. nah 2016-09-04 09:25:44 -0500
  • 6e6ef071f0 Readd default to handle error cases and fix gcc warning. nah 2016-09-03 10:59:26 -0500
  • 29504a3a2e Use UNITY_FLOAT_INVALID_TRAIT instead of default. nah 2016-09-03 10:28:51 -0500
  • 68a43b8fe3 Merge pull request #213 from jsalling/feature/simplify-testunity-output Mark VanderVoord 2016-09-02 09:10:05 -0400
  • de39186187 Add test for C string escape sequences jsalling 2016-08-03 22:38:15 -0500
  • af590028fa Unity to print C-style escaped strings as "\x16" Changes from "\0x16" before, makes it easier to copy strings from output jsalling 2016-08-03 21:31:37 -0500
  • 0cc3e45a23 Suppress output of FAIL messages that are expected during testing Works when using the putcharSpy, transparent without it jsalling 2016-04-27 23:35:50 -0500
  • 382c7087f4 Merge pull request #211 from jsalling/feature/testunity-fail-output Mark VanderVoord 2016-08-31 07:20:34 -0400
  • de7627f098 Merge pull request #212 from jsalling/feature/C89-comments Mark VanderVoord 2016-08-31 07:18:36 -0400
  • 41c2e5889b Bump the version Floats now pass Infinity == Infinity assertions jsalling 2016-08-30 21:51:38 -0500
  • da7e375cf9 Start building Unity & Fixture with C89 flags in continuous integration Remove stdint.h from the C89 build due to -pedantic warnings from type 'long long' and constants like UINTPTR_MAX = 18446744073709551615ULL jsalling 2016-08-27 16:15:00 -0500
  • 6d54ec2ff7 Get rid of conversion warning when using UNITY_FLOAT_VERBOSE with doubles Change the parameter of UnityPrintFloat from float to double (_UD) The call to snprintf uses implict default promotion to a double anyway jsalling 2016-08-27 15:34:10 -0500
  • 54aa838c8a Change the fallback isinf() macro to NOT need f_zero defined Delete old comments from before math.h was the default isinf() method jsalling 2016-08-27 15:27:52 -0500
  • 028ca953d7 Finish checking for equal floats in Arrays functions Refactor to use the same code everywhere for FloatWithin check Rename and fix a few tests for new behavior, infinity == infinity jsalling 2016-08-27 15:12:45 -0500
  • a74920d112 Merge pull request #210 from jsalling/feature/int-detection Mark VanderVoord 2016-08-26 15:03:44 -0400
  • 268c5b7e0b Make testunity.c printing uniform during failure, delete word "Previous" jsalling 2016-04-27 23:40:47 -0500
  • 113f2fc32a Add line numbers to Unity test Runner generated by awk script jsalling 2016-04-27 23:38:43 -0500
  • 28c94bd403 Remove references to UNITY_EXCLUDE_SIZEOF, rework config header jsalling 2016-08-25 08:48:29 -0500
  • 9aa4c7f1aa Clean up Makefile, move -Wredundant-decls to test build CC always exists inside make so ?= doesn't assign to it jsalling 2016-08-24 20:04:14 -0500
  • e4e2210eb6 Improving integer width detection The C preprocessor cannot use sizeof in #if etc. jsalling 2016-05-03 22:20:34 -0500
  • 8beb9715be C89 comment style changes only jsalling 2016-08-23 23:10:05 -0500
  • 3108aba5c7 If two floats happen to be equal, return right away Covers the cases where infinity == infinity jsalling 2016-08-23 22:36:02 -0500
  • daad2bc82b removed some newer style comments that crept into the codebase. Mark VanderVoord 2016-08-23 06:46:51 -0400
  • 75ad84c92f Merge pull request #209 from jsalling/cleanup/fixture-memory-testing Mark VanderVoord 2016-08-21 13:49:55 -0400
  • 92f6d5dd08 Verify the tests for Internal Malloc implementation free all the heap Make it more clear that each test of the internal heap implementation should free in LIFO order. Without this check, memory can be stranded but still pass. jsalling 2016-08-21 11:53:15 -0500
  • d837342b15 Move free() calls before test asserts, add comments to ReallocFail test jsalling 2016-08-21 11:45:54 -0500
  • 03ac71b8c9 Reorder free calls to free all memory The internal malloc must free in LIFO order jsalling 2016-08-21 11:27:47 -0500
  • f276c79f9b Merge branch 'feature/cmd_line_args' Mark VanderVoord 2016-08-11 13:37:51 -0400
  • 06bae56d30 Revert "Merge pull request #205 from bryongloden/patch-2" This reverts commit 783fcaea97 The guard memory bytes should never be freed inside unity_malloc() jsalling 2016-08-09 00:51:38 -0500
  • 783fcaea97 Merge pull request #205 from bryongloden/patch-2 Mark VanderVoord 2016-08-02 14:55:42 -0400
  • fbc20934e0 Merge pull request #206 from bryongloden/patch-3 Mark VanderVoord 2016-08-02 14:55:00 -0400
  • 13160e5f1e Update unity_fixture_Test.c Bryon Gloden, CISSP® 2016-07-28 17:11:11 -0400
  • 4fd5f79f28 Update unity_fixture.c Bryon Gloden, CISSP® 2016-07-26 19:41:30 -0400
  • 0737b4117f Update unity_fixture.c Bryon Gloden, CISSP® 2016-07-26 16:02:41 -0400
  • 094c05e904 Update unity_fixture_Test.c Bryon Gloden, CISSP® 2016-07-26 14:40:00 -0400
  • b1d8388ab8 Update unity_fixture.c Bryon Gloden, CISSP® 2016-07-26 14:19:41 -0400
  • 57676b5edc - Fixed cases with wildcards in file handling. Mark VanderVoord 2016-07-17 19:11:09 -0400
  • 03023f3249 Merge 81896252e8 into ad0c07c9ad Jerry Jacobs 2016-07-16 07:28:16 +0000
  • 99ac2d7ef8 Merge f0e5483987 into ad0c07c9ad Bryon Gloden, CISSP® 2016-07-16 07:28:14 +0000
  • ad0c07c9ad Merge pull request #204 from dmurdin/tms470 Mark VanderVoord 2016-07-13 06:49:48 -0400
  • cec38d13d3 Merge pull request #203 from dmurdin/pathslash Mark VanderVoord 2016-07-13 06:48:57 -0400
  • f1a4a5e652 Weak attribute fix for TMS470 Compilers. Daniel Murdin 2016-07-13 10:36:43 +0200
  • 44c429bd8b Escape backslashes for windows paths, fixes #137. Daniel Murdin 2016-07-13 10:31:52 +0200
  • f2f073d533 Fix warnings if you use UNITY_EXCLUDE_FLOAT Joe Kroesche 2016-07-10 20:36:08 -0500
  • 1cecab30e8 - Added alias for filter -n of -f - Added ability to surround filter strings in either type of quotes - Added ability to filter on multiple test strings as a comma delimited list - Added ability to filter on test_file:test_name - Added ability to use alternate syntax for filter of -f="blah" Mark VanderVoord 2016-07-08 17:35:37 -0400
  • f05385250c - Document new define in unity.h. Will still need to be added to real docs Mark VanderVoord 2016-07-08 16:10:14 -0400
  • f205b7de05 - If we declare main before the definition, we make sure the arguments match Mark VanderVoord 2016-07-08 16:05:32 -0400
  • eba387fa3e - Add tests which prove command line arguments now work with runner. Fixed a few bugs in this area. Mark VanderVoord 2016-06-27 08:41:58 -0400
  • 96f51e8530 Updated method of testing generate_test_runner script to be a FUNCTIONAL test instead of a perfect code match. Backfilled most tests and added some coverage not previously present. Still need to test new command line args and a few cmock details. Mark VanderVoord 2016-06-22 20:57:11 -0400
  • 4d3d062b56 Adding command line support. Started with -n (test name matching) -x (test name exclusion). Script verification hasn't been added yet. Mark VanderVoord 2016-06-21 16:07:10 -0400
  • f0e5483987 Update unity_fixture_Test.c Bryon Gloden, CISSP® 2016-06-21 15:34:35 -0400
  • b3bc196ab3 making new flush routines work under all defined conditions. Mark VanderVoord 2016-06-21 10:01:34 -0400
  • c19b5e20a0 Merge pull request #198 from Liebherr-Nenzing/master Mark VanderVoord 2016-06-21 06:47:29 -0400
  • 87af5a1675 add unity_to_junit.py Mathias Giacomuzzi 2016-06-21 09:43:26 +0200
  • 7c3d829070 Protect against files without any test output Mark VanderVoord 2016-05-18 07:31:17 -0400
  • d86a44b501 Merge pull request #131 from andyhelp/master Mark VanderVoord 2016-05-15 14:03:38 -0400
  • 83f7d5237b Change example_1 to compile with std=c89 Andrzej Bieniek 2015-09-09 21:13:33 +0100
  • 61dd3f181b Change comments style in unity and test runner to compile with std=c89 Andrzej Bieniek 2015-09-09 21:09:59 +0100
  • 6f9d11fd4e Merge 4d54d5110e into a5a927f43e shellyniz 2016-05-14 05:22:03 +0000
  • a5a927f43e Merge pull request #193 from wolf99/AddConfigTemplate Mark VanderVoord 2016-05-12 11:08:10 -0400
  • d7a371a993 Moved example unity_config.h from src to examples Toby 2016-05-12 16:00:31 +0100
  • 287bcae478 Add template example unity_config.h file Toby 2016-05-11 12:10:55 +0100
  • 837c5291fa The class gives back to the community: better documentation produced for the class and now part of the open source project Mark VanderVoord 2016-05-06 11:52:06 -0400
  • e3612e9a10 Update Fixtures too. Mark VanderVoord 2016-05-06 10:55:41 -0400
  • c5c392b18a update UNITY_OUTPUT_CHAR to not return a value (because we never check it anyway). add UNITY_OUTPUT_FLUSH to make sure we get the output we need on aborted tests and whatnot. Mark VanderVoord 2016-05-06 10:47:39 -0400
  • 7053ef7523 Merge pull request #192 from jsalling/feature/unity-coverage Mark VanderVoord 2016-05-04 22:01:13 -0400
  • c5238adab2 100% code coverage for Unity project Add test for failure count and UnityEnd return value Cover printing escape codes with length parameter Full statement coverage jsalling 2016-05-03 21:58:29 -0500
  • bff491c73c Test strings not equal to NULL when using length parameter jsalling 2016-05-03 20:47:00 -0500
  • 7c270e0541 Test that details are printed in a direct TEST_FAIL call jsalling 2016-05-03 20:31:37 -0500
  • 4164540333 Test number arrays for two NULL inputs, it should pass More statement coverage on NULL input feature jsalling 2016-05-03 20:26:42 -0500
  • 213e47178c Test string arrays and memory comparison with length 0, it should fail jsalling 2016-05-03 20:17:38 -0500
  • a6748f39cd Test number arrays comparison with length 0, it should fail Get test coverage on this feature for int, float, & double jsalling 2016-05-03 20:14:30 -0500
  • 07513dd331 Remove weak linked setup/teardown from coverage build, unreachable & empty Add config flag for 64-bit, max covered lines even with 32-bit compilers Always print uncovered lines, delete separate make target jsalling 2016-05-03 20:02:01 -0500
  • b971ec921f Simplify printing StrPointless into a single macro, remove repeated code jsalling 2016-05-03 19:52:32 -0500
  • 67a37a4db7 Refactor UnityPrintNumber(), remove unreachable code Remove what looks like an overflow check. 'divisor' cannot overflow since it is the same type as 'number' and cannot be greater. jsalling 2016-05-02 23:50:28 -0500
  • 0247e34b1f Merge pull request #190 from jsalling/feature/differentiate-final-ouput Mark VanderVoord 2016-04-27 22:45:13 -0400
  • 0137f4a8c2 Add option to print FAILED instead of FAIL during the summary For easier automation and searching for a test suite failure jsalling 2016-04-27 21:00:04 -0500
  • a00e879d3d Merge pull request #189 from rikvdh/master Mark VanderVoord 2016-04-27 06:54:14 -0400
  • 23271e81a6 also check for isinf Rik van der Heijden 2016-04-27 10:25:11 +0200