aboutsummaryrefslogtreecommitdiffstats
path: root/src/gtest-printers.cc
Commit message (Collapse)AuthorAgeFilesLines
* Move everything in googletest into googletest/googletestBilly Donahue2015-08-251-373/+0
|
* Add annotations to suppress ThreadSanitizer failures due to gunit/gmock printer.kosak2014-03-121-0/+3
|
* Standards compliance changes to fix QNX build.kosak2014-03-121-1/+2
|
* Add GTEST_MOVE macro, to support mocking methods with move-only return types.kosak2014-01-291-0/+3
| | | | Add GTEST_ATTRIBUTE_NO_SANITIZE_ADDRESS_
* Add MemorySanitizer annotations in gtest printers. Also remove unused ↵kosak2013-12-031-0/+3
| | | | variable kPathSeparatorString.
* Removes testing::internal::String::Format(), which causes problems as it ↵kosak2013-02-221-4/+3
| | | | truncates the result at 4096 chars. Also update an obsolete link in comment.
* Improves gtest's failure messages. In particulars, char pointers andzhanyong.wan2012-06-071-34/+50
| | | | char arrays are not escapped properly.
* Adds a new macro simplifying use of snprinf on MS platforms.vladlosev2011-09-261-9/+1
|
* Simplifies ASCII character detection in gtest-printers.h. This also makes it ↵vladlosev2011-04-091-2/+1
| | | | possible to build Google Test on MinGW.
* Fixes a compiler error when compiling with Visual Age (by Hady Zalek).vladlosev2011-04-081-1/+1
|
* Changes diagnostic output of the question mark from '\?' to '?'.vladlosev2011-04-011-3/+0
|
* Indents preprocessor directives.zhanyong.wan2011-02-221-3/+3
|
* Renames some internal functions to avoid name clashes.vladlosev2011-01-291-2/+2
|
* Makes gtest print string literals correctly when it contains \x escape ↵zhanyong.wan2010-12-021-12/+29
| | | | sequences. Contributed by Yair Chuchem.
* Include gtest headers as user headers instead of system headers.zhanyong.wan2010-09-141-2/+2
|
* Makes gtest print enums as integers instead of hex dumps (by Zhanyong Wan); ↵zhanyong.wan2010-08-091-3/+4
| | | | improves the hex dump format (by Zhanyong Wan); gets rid of class TestInfoImpl (by Zhanyong Wan); adds exception handling (by Vlad Losev).
* Allows EXPECT_EQ to accept arguments that don't have operator << (by ↵zhanyong.wan2010-07-211-45/+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).
* Moves the universal printer from gmock to gtest and refactors the cmake ↵zhanyong.wan2010-05-101-0/+318
script for reusing in gmock (by Vlad Losev).