Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Improves gtest's failure messages. In particulars, char pointers and | zhanyong.wan | 2012-06-07 | 2 | -62/+58 | |
| | | | | char arrays are not escapped properly. | |||||
* | Fixes threading annotations and compatibility with C++11, which doesn't | zhanyong.wan | 2012-05-31 | 1 | -2/+2 | |
| | | | | | allow exepctions to be thrown in a destructor. | |||||
* | Misc small updates to some debug death code, and to messages streaming to macros | jgm | 2012-03-09 | 1 | -3/+8 | |
| | ||||||
* | Adds file and line information to the "message", which is used as the summary | jgm | 2012-01-17 | 2 | -8/+9 | |
| | | | | of a failure. | |||||
* | Removes spurious semicolon. | vladlosev | 2011-11-28 | 1 | -2/+1 | |
| | ||||||
* | Improves conformance to the Google C++ Style Guide (by Greg Miller). | vladlosev | 2011-11-04 | 5 | -6/+4 | |
| | ||||||
* | Adds support for detection of running in death test child processes. | vladlosev | 2011-10-28 | 1 | -1/+31 | |
| | ||||||
* | Expressed the thread-safety annotations in code, replacing the existing ↵ | vladlosev | 2011-10-24 | 2 | -26/+31 | |
| | | | | comment-based system (by Aaron Jacobs). | |||||
* | Implements the timestamp attribute for the testsuites element in the output ↵ | vladlosev | 2011-10-05 | 2 | -1/+51 | |
| | | | | XML (external contribution by Dirk Meister). | |||||
* | Adds ability to inject death test child arguments for test purposes. | vladlosev | 2011-10-05 | 2 | -4/+21 | |
| | ||||||
* | Adds a new macro simplifying use of snprinf on MS platforms. | vladlosev | 2011-09-26 | 1 | -9/+1 | |
| | ||||||
* | Simplifies the implementatoin of the test result printer; by Ulfar Erlingsson | zhanyong.wan | 2011-09-16 | 1 | -8/+4 | |
| | ||||||
* | Ignore SIGPROF signal during clone()/fork() call. clone()/fork() call hangs ↵ | vladlosev | 2011-09-09 | 1 | -0/+21 | |
| | | | | permanently if it consumes more cpu than the SIGPROF signal timer interval (by Nabeel Mian). | |||||
* | QNX compatibility patch (by Haruka Iwao). | vladlosev | 2011-06-20 | 2 | -8/+77 | |
| | ||||||
* | Suppresses the tail-call optimization of StackGrowsDown() in GCC4.6 (by Paul ↵ | vladlosev | 2011-06-13 | 1 | -4/+6 | |
| | | | | Pluzhnikov). | |||||
* | Adds support for building Google Mock as a shared library (DLL). | vladlosev | 2011-05-20 | 1 | -2/+2 | |
| | ||||||
* | fixes a problem caused by gcc 4.6 optimization (by Paul Pluzhnikov) | zhanyong.wan | 2011-04-14 | 1 | -0/+5 | |
| | ||||||
* | Fixes Sun C++ compiler errors (by Pasi Valminen) | zhanyong.wan | 2011-04-12 | 1 | -1/+8 | |
| | ||||||
* | Simplifies ASCII character detection in gtest-printers.h. This also makes it ↵ | vladlosev | 2011-04-09 | 1 | -2/+1 | |
| | | | | possible to build Google Test on MinGW. | |||||
* | Fixes a compiler error when compiling with Visual Age (by Hady Zalek). | vladlosev | 2011-04-08 | 1 | -1/+1 | |
| | ||||||
* | makes gtest compatible with HP UX (by Pasi Valminen); fixes a typo in the ↵ | zhanyong.wan | 2011-04-07 | 1 | -1/+1 | |
| | | | | name of xlC (by Hady Zalek). | |||||
* | Changes diagnostic output of the question mark from '\?' to '?'. | vladlosev | 2011-04-01 | 1 | -3/+0 | |
| | ||||||
* | Fixes Windows CE compatibility problem (issue ↵ | vladlosev | 2011-03-30 | 1 | -1/+1 | |
| | | | | http://code.google.com/p/googletest/issues/detail?id=362). | |||||
* | Fixes 'formatting error or buffer exceeded' error when outputting long ↵ | vladlosev | 2011-03-30 | 1 | -17/+13 | |
| | | | | failure messages in XML. | |||||
* | Fixes compatibility with Sun C++ (by Hady Zalek); fixes compatibility | zhanyong.wan | 2011-03-11 | 1 | -3/+3 | |
| | | | | with Android (by Zachary Vorhies). | |||||
* | Fixes compatibility with Borland C++Builder. Original patch by Josh | zhanyong.wan | 2011-03-05 | 1 | -1/+1 | |
| | | | | Kelley. Simplified by Zhanyong Wan. | |||||
* | Indents preprocessor directives. | zhanyong.wan | 2011-02-22 | 6 | -139/+179 | |
| | ||||||
* | 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 | 2 | -2/+35 | |
| | ||||||
* | Add markers to death test messages to make them more recogizable (by Jeff ↵ | zhanyong.wan | 2011-02-02 | 1 | -5/+24 | |
| | | | | Shute). | |||||
* | Adds type_param and value_param as <testcase> attributes to the XML | zhanyong.wan | 2011-02-02 | 2 | -29/+52 | |
| | | | | | | report; also removes the comment() and test_case_comment() fields of TestInfo. Proposed and initally implemented by Joey Oravec. Re-implemented by Vlad Losev. | |||||
* | template selection error in IBM's xIC_r compiler. | vladlosev | 2011-01-29 | 1 | -10/+16 | |
| | ||||||
* | Renames some internal functions to avoid name clashes. | vladlosev | 2011-01-29 | 1 | -2/+2 | |
| | ||||||
* | Makes gtest print string literals correctly when it contains \x escape ↵ | zhanyong.wan | 2010-12-02 | 1 | -12/+29 | |
| | | | | sequences. Contributed by Yair Chuchem. | |||||
* | Adds Google Native Client compatibility (issue 329). | vladlosev | 2010-11-30 | 1 | -2/+2 | |
| | ||||||
* | 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 | |
| | ||||||
* | Modifies handling of C++ exceptions in death tests to treat exceptions ↵ | vladlosev | 2010-10-18 | 1 | -10/+23 | |
| | | | | escaping them as failures. | |||||
* | Adds a missing #include (by Vlad Losev). | zhanyong.wan | 2010-10-14 | 1 | -0/+1 | |
| | ||||||
* | Makes gtest wokr on MinGW (by Vlad Losev); removes unused ↵ | zhanyong.wan | 2010-10-11 | 1 | -8/+8 | |
| | | | | linked_ptr::release() method (by Zhanyong Wan). | |||||
* | 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 ↵ | zhanyong.wan | 2010-09-27 | 1 | -4/+4 | |
| | | | | second argument. | |||||
* | Include gtest headers as user headers instead of system headers. | zhanyong.wan | 2010-09-14 | 10 | -23/+23 | |
| | ||||||
* | Removes all uses of StrStream; fixes the VC projects and simplifies them by ↵ | zhanyong.wan | 2010-09-08 | 1 | -12/+12 | |
| | | | | using gtest-all.cc. | |||||
* | Casts char to unsigned char before calling isspace() etc to avoid undefined ↵ | zhanyong.wan | 2010-08-31 | 4 | -53/+98 | |
| | | | | behavior (by Zhanyong Wan); removes conditional #includes keyed on GTEST_HAS_PROTOBUF_ (by Zhanyong Wan); publishes GTEST_HAS_STREAM_REDIRECTION (by Vlad Losev); forward declares some classes properly (by Samuel Benzaquen); honors the --gtest_catch_exceptions flag (by Vlad Losev). | |||||
* | Removes the Windows golden file (by Vlad Losev); implements test result ↵ | zhanyong.wan | 2010-08-19 | 2 | -16/+242 | |
| | | | | streaming (by Nikhil Jindal and cleaned up by Zhanyong Wan). | |||||
* | Makes gtest print enums as integers instead of hex dumps (by Zhanyong Wan); ↵ | zhanyong.wan | 2010-08-09 | 3 | -325/+197 | |
| | | | | improves the hex dump format (by Zhanyong Wan); gets rid of class TestInfoImpl (by Zhanyong Wan); adds exception handling (by Vlad Losev). | |||||
* | Allows Google Test to build on OSes other then a pre-determined set and ↵ | vladlosev | 2010-07-22 | 1 | -0/+1 | |
| | | | | implements GTEST_HAS_POSIX_REGEX condition for compatibility with them. | |||||
* | Allows EXPECT_EQ to accept arguments that don't have operator << (by ↵ | zhanyong.wan | 2010-07-21 | 2 | -87/+69 | |
| | | | | | | | Zhanyong Wan). Allows a user to customize how the universal printer prints a pointer of a specific type by overloading << (by Zhanyong Wan). Works around a bug in Cymbian's C++ compiler (by Vlad Losev). | |||||
* | Fixes warnings when built by GCC with -Wswitch-default. Original patch by ↵ | vladlosev | 2010-07-14 | 1 | -2/+2 | |
| | | | | Zhixu Liu (zhixu.liu@gmail.com). |