summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* QNX compatibility patch (by Haruka Iwao).vladlosev2011-06-202-8/+77
|
* Suppresses the tail-call optimization of StackGrowsDown() in GCC4.6 (by Paul ↵vladlosev2011-06-131-4/+6
| | | | Pluzhnikov).
* Adds support for building Google Mock as a shared library (DLL).vladlosev2011-05-201-2/+2
|
* fixes a problem caused by gcc 4.6 optimization (by Paul Pluzhnikov)zhanyong.wan2011-04-141-0/+5
|
* Fixes Sun C++ compiler errors (by Pasi Valminen)zhanyong.wan2011-04-121-1/+8
|
* 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
|
* makes gtest compatible with HP UX (by Pasi Valminen); fixes a typo in the ↵zhanyong.wan2011-04-071-1/+1
| | | | name of xlC (by Hady Zalek).
* Changes diagnostic output of the question mark from '\?' to '?'.vladlosev2011-04-011-3/+0
|
* Fixes Windows CE compatibility problem (issue ↵vladlosev2011-03-301-1/+1
| | | | http://code.google.com/p/googletest/issues/detail?id=362).
* Fixes 'formatting error or buffer exceeded' error when outputting long ↵vladlosev2011-03-301-17/+13
| | | | failure messages in XML.
* Fixes compatibility with Sun C++ (by Hady Zalek); fixes compatibilityzhanyong.wan2011-03-111-3/+3
| | | | with Android (by Zachary Vorhies).
* Fixes compatibility with Borland C++Builder. Original patch by Joshzhanyong.wan2011-03-051-1/+1
| | | | Kelley. Simplified by Zhanyong Wan.
* Indents preprocessor directives.zhanyong.wan2011-02-226-139/+179
|
* Fixes off-by-one error in a message about test sharding (by David Glasser).vladlosev2011-02-121-2/+3
|
* Adds null check for file locations in XML output printer.vladlosev2011-02-022-2/+35
|
* Add markers to death test messages to make them more recogizable (by Jeff ↵zhanyong.wan2011-02-021-5/+24
| | | | Shute).
* Adds type_param and value_param as <testcase> attributes to the XMLzhanyong.wan2011-02-022-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.vladlosev2011-01-291-10/+16
|
* 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.
* Adds Google Native Client compatibility (issue 329).vladlosev2010-11-301-2/+2
|
* Changes default of --gtest_catch_exceptions to true.vladlosev2010-10-261-3/+4
|
* Fixes compiler warning when built with -std=c++0x.vladlosev2010-10-221-2/+2
|
* Modifies handling of C++ exceptions in death tests to treat exceptions ↵vladlosev2010-10-181-10/+23
| | | | escaping them as failures.
* Adds a missing #include (by Vlad Losev).zhanyong.wan2010-10-141-0/+1
|
* Makes gtest wokr on MinGW (by Vlad Losev); removes unused ↵zhanyong.wan2010-10-111-8/+8
| | | | linked_ptr::release() method (by Zhanyong Wan).
* Removes uses of deprecated AssertionFailure() API (by Vlad Losev).zhanyong.wan2010-09-271-42/+28
|
* Allows EXPECT_FATAL_FAILURE() and friends to accept a string object as the ↵zhanyong.wan2010-09-271-4/+4
| | | | second argument.
* Include gtest headers as user headers instead of system headers.zhanyong.wan2010-09-1410-23/+23
|
* Removes all uses of StrStream; fixes the VC projects and simplifies them by ↵zhanyong.wan2010-09-081-12/+12
| | | | using gtest-all.cc.
* Casts char to unsigned char before calling isspace() etc to avoid undefined ↵zhanyong.wan2010-08-314-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.wan2010-08-192-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.wan2010-08-093-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 ↵vladlosev2010-07-221-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.wan2010-07-212-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 ↵vladlosev2010-07-141-2/+2
| | | | Zhixu Liu (zhixu.liu@gmail.com).
* Makes gtest_break_on_failure_unittest work on minGW (by vladl); improveszhanyong.wan2010-07-081-1/+5
| | | | the NULL-dereferencing hack to work with LLVM (by chandlerc).
* Makes gtest report failures in ad hoc test assertions executed before ↵zhanyong.wan2010-06-162-3/+9
| | | | RUN_ALL_TESTS().
* Implements printing parameters of failed parameterized tests (issue 71).vladlosev2010-05-181-14/+19
|
* Fixes a typo in comments.vladlosev2010-05-171-5/+5
|
* Moves the universal printer from gmock to gtest and refactors the cmake ↵zhanyong.wan2010-05-102-0/+319
| | | | script for reusing in gmock (by Vlad Losev).
* Improves support for building Google Test as Windows DLL.vladlosev2010-05-053-3/+10
|
* Implements color output in GNU Screen sessions (issue 277).vladlosev2010-04-221-0/+1
|
* Enables death tests on AIX, by Hady Zalek.zhanyong.wan2010-03-231-0/+4
|
* Adds missing gtest DLL exports.zhanyong.wan2010-03-222-29/+45
|
* Supports building gtest as a DLL (by Vlad Losev).zhanyong.wan2010-03-051-1/+1
|
* Renames ThreadStartSempahore to Notificaton (by Vlad Losev); adds threading ↵zhanyong.wan2010-03-041-2/+0
| | | | tests for SCOPED_TRACE() (by Vlad Losev); replaces native pthread calls with gtest's threading constructs (by Vlad Losev); fixes flakiness in CountedDestructor (by Vlad Losev); minor MSVC 7.1 clean-up (by Zhanyong Wan).
* Simplifies ThreadStartSemaphore's implementation.zhanyong.wan2010-02-261-40/+0
|
* Fixes MSVC warnings in 64-bit mode.zhanyong.wan2010-02-253-13/+14
|