|
From: Branden A. <b.m...@gm...> - 2014-05-31 00:47:38
|
Hey all! This release addresses a few bugs, some of which address Windows support. In addition, there is now a sample CMake project to follow for Visual Studios or MSVC projects. Please test it out and report any problems you might have. http://prdownloads.sourceforge.net/check/check-0.9.13.tar.gz?download - Branden NEWS: Fri May 30, 2014: Released Check 0.9.13 based on r1137 (2014-05-26 21:03:09 +0000) * When a test assertion fails, exit() was invoked. This results in any registered exit handlers being invoked. A test should not be relied upon to clean up if it fails. Instead, _exit() will be used to signal a test failure, to prevent exit handlers from being invoked. * Fix issue with string formatting in ck_assert_(u)int_* calls, where using the % operator would be interpreted as a string formatter. Bug #96. * If the LOG/XML/TAP file name is set to "-" either through the srunner_set_log() srunner_set_xml() or srunner_set_tap() calls or through the related environment variables, the logged data will be printed to stdout instead of a file. This is mainly to support using TAP for fixtures which expect the results to be reported via stdout. However, it is available via all of Check's logging modalities. * For CMake builds, check_stdint.h was not being installed. This is now fixed. * Check's example under doc/example now also works for CMake projects using Visual Studios and MSVC. This includes an example CMake configuration. |