aboutsummaryrefslogtreecommitdiffstats
path: root/test/gtest-printers_test.cc
Commit message (Collapse)AuthorAgeFilesLines
* Move everything in googletest into googletest/googletestBilly Donahue2015-08-251-1635/+0
|
* Determine the existence of hash_map/hash_set in gtest-port.h.kosak2015-07-171-5/+5
|
* Add support for gtest custom printers.kosak2015-07-141-31/+15
|
* Distinguish between C++11 language and library support for std::function, ↵kosak2014-11-171-1/+1
| | | | std::begin, std::end, and std::move in gtest and gmock.
* Push upstream to SVN.billydonahue2014-05-151-3/+4
|
* Remove code referencing Google protocol buffers version 1.kosak2014-03-121-7/+0
|
* Define specialization of PrintTo(...) for ::std::tuple.kosak2014-01-121-28/+120
|
* Fix warnings encountered with clang -Wall.kosak2013-12-031-0/+1
|
* Delete whitespace, and change the return type of ↵kosak2013-12-031-2/+0
| | | | ImplicitlyConvertible::MakeFrom() to From&.
* Fixes some compatibility issues with STLport.zhanyong.wan2013-04-041-4/+9
|
* Improves gtest's failure messages. In particulars, char pointers andzhanyong.wan2012-06-071-10/+260
| | | | char arrays are not escapped properly.
* Improves conformance to the Google C++ Style Guide (by Greg Miller).vladlosev2011-11-041-1/+1
|
* Changes to fix gtest-printers_test on VC++ 2010.vladlosev2011-10-241-1/+5
|
* Fixes Sun C++ compiler errors (by Pasi Valminen)zhanyong.wan2011-04-121-4/+10
|
* Changes diagnostic output of the question mark from '\?' to '?'.vladlosev2011-04-011-14/+14
|
* Makes IsContainerTest compatible with Sun C++ and Visual Age C++, based on ↵zhanyong.wan2011-03-091-0/+22
| | | | Hady Zalek's report and experiment; also fixes a bug that causes it to think that a class named const_iterator is a container; also clarifies the Borland C++ compatibility fix in the comments based on Josh Kelley's suggestion.
* Fixes non-conforming uses of commas in enums s.t. the code compiles onzhanyong.wan2011-03-051-2/+2
| | | | Sun OS. Patch by Hady Zalek.
* Fixes PrintUnprintableTypeTest.InGlobalNamespace in gtest-printers_test on ↵vladlosev2011-02-281-1/+1
| | | | 64bit PowerPCs.
* Indents preprocessor directives.zhanyong.wan2011-02-221-4/+4
|
* Makes gtest print string literals correctly when it contains \x escape ↵zhanyong.wan2010-12-021-0/+24
| | | | sequences. Contributed by Yair Chuchem.
* Makes gtest wokr on MinGW (by Vlad Losev); removes unused ↵zhanyong.wan2010-10-111-11/+10
| | | | linked_ptr::release() method (by Zhanyong Wan).
* Include gtest headers as user headers instead of system headers.zhanyong.wan2010-09-141-2/+2
|
* Casts char to unsigned char before calling isspace() etc to avoid undefined ↵zhanyong.wan2010-08-311-1/+1
| | | | 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).
* Makes gtest print enums as integers instead of hex dumps (by Zhanyong Wan); ↵zhanyong.wan2010-08-091-9/+73
| | | | 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-32/+62
| | | | | | | 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 issue 286.vladlosev2010-05-221-3/+2
|
* Moves the universal printer from gmock to gtest and refactors the cmake ↵zhanyong.wan2010-05-101-0/+1163
script for reusing in gmock (by Vlad Losev).