aboutsummaryrefslogtreecommitdiffstats
path: root/src/gtest-test-part.cc
Commit message (Collapse)AuthorAgeFilesLines
* Renames the TestPartResult type enums and adjusts the order of methods in ↵zhanyong.wan2009-09-181-6/+6
| | | | the event listener interface (by Vlad Losev).
* Adds color support for TERM=linux (by Alexander Demin); renames List to ↵zhanyong.wan2009-07-131-5/+5
| | | | Vector (by Zhanyong Wan); implements Vector::Erase (by Vlad Losev).
* Makes List a random-access data structure. This simplifies the ↵zhanyong.wan2009-07-011-6/+1
| | | | implementation and makes it easier to implement test shuffling.
* Refactors for the event listener API (by Vlad Losev): hides some methods in ↵zhanyong.wan2009-06-251-4/+5
| | | | UnitTest; implements the result printers using the public API.
* Renames the POSIX wrappers (by Zhanyong Wan) and adds more targets to ↵zhanyong.wan2009-04-241-1/+1
| | | | SConscript (by Vlad Losev).
* Simplifies implementation by defining a POSIX portability layer; adds the ↵zhanyong.wan2009-03-261-1/+1
| | | | death test style flag to --help.
* Cleans up macro definitions.zhanyong.wan2009-02-231-2/+2
|
* Many changes:shiqian2008-10-111-0/+124
- appends "_" to internal macro names (by Markus Heule). - makes Google Test work with newer versions of tools on Symbian and Windows CE (by Mika Raento). - adds the (ASSERT|EXPECT)_NO_FATAL_FAILURE macros (by Markus Heule). - changes EXPECT_(NON|)FATAL_FAILURE to catch failures in the current thread only (by Markus Heule). - adds the EXPECT_(NON|)FATAL_FAILURE_ON_ALL_THREADS macros (by Markus Heule). - adds GTEST_HAS_PTHREAD and GTEST_IS_THREADSAFE to indicate the availability of <pthread.h> and Google Test's thread-safety (by Zhanyong Wan). - adds scons/SConscript for building with scons (by Joi Sigurdsson). - adds src/gtest-all.cc for building Google Test from a single file (by Markus Heule). - updates the xcode project to include new tests (by Preston Jackson).