| Commit message (Expand) | Author | Age | Files | Lines |
* | prints type/value parameters when listing tests | zhanyong.wan | 2013-04-10 | 1 | -5/+49 |
* | Implements support for calling Test::RecordProperty() outside of a test. | vladlosev | 2013-04-05 | 1 | -109/+261 |
* | Supports colored output on term type screen-256color. | zhanyong.wan | 2013-03-11 | 1 | -1/+2 |
* | Fixes unused function warning on Mac, and fixes compatibility with newer GCC. | zhanyong.wan | 2013-02-28 | 1 | -2/+2 |
* | Fixes a nasty issue in gtest's template instantiation. | zhanyong.wan | 2013-02-28 | 1 | -0/+28 |
* | Removes an unused variable; also refactors to support an up-coming | zhanyong.wan | 2013-02-28 | 1 | -18/+13 |
* | Fixes gUnit streaming output format. | kosak | 2013-02-22 | 1 | -111/+1 |
* | Removes testing::internal::String::Format(), which causes problems as it trun... | kosak | 2013-02-22 | 1 | -99/+74 |
* | Unfortunately, the svn repo is a bit out of date. This commit contains 8 | jgm | 2012-11-15 | 1 | -192/+120 |
* | added defines for iOS | jgm | 2012-07-09 | 1 | -1/+1 |
* | Improves gtest's failure messages. In particulars, char pointers and | zhanyong.wan | 2012-06-07 | 1 | -28/+8 |
* | Fixes threading annotations and compatibility with C++11, which doesn't | zhanyong.wan | 2012-05-31 | 1 | -2/+2 |
* | Adds file and line information to the "message", which is used as the summary | jgm | 2012-01-17 | 1 | -7/+8 |
* | Improves conformance to the Google C++ Style Guide (by Greg Miller). | vladlosev | 2011-11-04 | 1 | -2/+0 |
* | Expressed the thread-safety annotations in code, replacing the existing comme... | vladlosev | 2011-10-24 | 1 | -25/+26 |
* | Implements the timestamp attribute for the testsuites element in the output X... | vladlosev | 2011-10-05 | 1 | -1/+37 |
* | Simplifies the implementatoin of the test result printer; by Ulfar Erlingsson | zhanyong.wan | 2011-09-16 | 1 | -8/+4 |
* | Adds support for building Google Mock as a shared library (DLL). | vladlosev | 2011-05-20 | 1 | -2/+2 |
* | makes gtest compatible with HP UX (by Pasi Valminen); fixes a typo in the nam... | zhanyong.wan | 2011-04-07 | 1 | -1/+1 |
* | Fixes 'formatting error or buffer exceeded' error when outputting long failur... | vladlosev | 2011-03-30 | 1 | -17/+13 |
* | Fixes compatibility with Sun C++ (by Hady Zalek); fixes compatibility | zhanyong.wan | 2011-03-11 | 1 | -3/+3 |
* | Fixes compatibility with Borland C++Builder. Original patch by Josh | zhanyong.wan | 2011-03-05 | 1 | -1/+1 |
* | Indents preprocessor directives. | zhanyong.wan | 2011-02-22 | 1 | -53/+68 |
* | Fixes off-by-one error in a message about test sharding (by David Glasser). | vladlosev | 2011-02-12 | 1 | -2/+3 |
* | Adds null check for file locations in XML output printer. | vladlosev | 2011-02-02 | 1 | -2/+3 |
* | Adds type_param and value_param as <testcase> attributes to the XML | zhanyong.wan | 2011-02-02 | 1 | -26/+47 |
* | template selection error in IBM's xIC_r compiler. | vladlosev | 2011-01-29 | 1 | -10/+16 |
* | Changes default of --gtest_catch_exceptions to true. | vladlosev | 2010-10-26 | 1 | -3/+4 |
* | Fixes compiler warning when built with -std=c++0x. | vladlosev | 2010-10-22 | 1 | -2/+2 |
* | Removes uses of deprecated AssertionFailure() API (by Vlad Losev). | zhanyong.wan | 2010-09-27 | 1 | -42/+28 |
* | Allows EXPECT_FATAL_FAILURE() and friends to accept a string object as the se... | zhanyong.wan | 2010-09-27 | 1 | -4/+4 |
* | Include gtest headers as user headers instead of system headers. | zhanyong.wan | 2010-09-14 | 1 | -2/+2 |
* | Removes all uses of StrStream; fixes the VC projects and simplifies them by u... | zhanyong.wan | 2010-09-08 | 1 | -12/+12 |
* | Casts char to unsigned char before calling isspace() etc to avoid undefined b... | zhanyong.wan | 2010-08-31 | 1 | -32/+61 |
* | Removes the Windows golden file (by Vlad Losev); implements test result strea... | zhanyong.wan | 2010-08-19 | 1 | -16/+232 |
* | Makes gtest print enums as integers instead of hex dumps (by Zhanyong Wan); i... | zhanyong.wan | 2010-08-09 | 1 | -237/+189 |
* | Allows EXPECT_EQ to accept arguments that don't have operator << (by Zhanyong... | zhanyong.wan | 2010-07-21 | 1 | -42/+0 |
* | Fixes warnings when built by GCC with -Wswitch-default. Original patch by Zhi... | vladlosev | 2010-07-14 | 1 | -2/+2 |
* | Makes gtest_break_on_failure_unittest work on minGW (by vladl); improves | zhanyong.wan | 2010-07-08 | 1 | -1/+5 |
* | Makes gtest report failures in ad hoc test assertions executed before RUN_ALL... | zhanyong.wan | 2010-06-16 | 1 | -1/+3 |
* | Implements printing parameters of failed parameterized tests (issue 71). | vladlosev | 2010-05-18 | 1 | -14/+19 |
* | Implements color output in GNU Screen sessions (issue 277). | vladlosev | 2010-04-22 | 1 | -0/+1 |
* | Enables death tests on AIX, by Hady Zalek. | zhanyong.wan | 2010-03-23 | 1 | -0/+4 |
* | Fixes MSVC warnings in 64-bit mode. | zhanyong.wan | 2010-02-25 | 1 | -10/+11 |
* | Simplifies the implementation by using std::vector instead of Vector. | zhanyong.wan | 2010-02-25 | 1 | -91/+95 |
* | Adds threading support (by Miklos Fazekas, Vlad Losev, and Chandler Carruth);... | zhanyong.wan | 2010-02-24 | 1 | -1/+1 |
* | Introduces macro GTEST_HAS_STREAM_REDIRECTION_ (by Vlad Losev); fixes unsynch... | zhanyong.wan | 2010-01-28 | 1 | -3/+5 |
* | Implements stdout capturing (by Vlad Losev); fixes compiler error on NVCC (by... | zhanyong.wan | 2010-01-27 | 1 | -0/+3 |
* | Changes Message() to print double with enough precision by default. | zhanyong.wan | 2010-01-08 | 1 | -10/+8 |
* | Removes uses of GTEST_HAS_STD_STRING. | zhanyong.wan | 2009-12-16 | 1 | -14/+0 |