aboutsummaryrefslogtreecommitdiffstats
path: root/include
Commit message (Collapse)AuthorAgeFilesLines
* Allows Google Test to build on OSes other then a pre-determined set and ↵vladlosev2010-07-221-17/+32
| | | | 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-213-97/+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-142-1/+3
| | | | Zhixu Liu (zhixu.liu@gmail.com).
* Fixes definitions from pthread.h used before the header inclusion.vladlosev2010-07-121-4/+6
|
* Adds tests for SkipPrefix().zhanyong.wan2010-06-081-1/+1
|
* Fixes a wrong comment for OnTestPartResult().vladlosev2010-05-311-1/+1
|
* Implements printing parameters of failed parameterized tests (issue 71).vladlosev2010-05-181-5/+6
|
* Adds GTEST_REMOVE_REFERENCE_AND_CONST_.zhanyong.wan2010-05-171-1/+5
|
* Replaces UniversalPrinter<T>::Print(x, os) with UniversalPrint(x, os) as ↵vladlosev2010-05-131-5/+7
| | | | appropriate (by Zhanyong Wan).
* Suppresses some Clang warnings (by Chandler Carruth, Jeffrey Yasskin, and ↵zhanyong.wan2010-05-102-21/+28
| | | | Zhanyong Wan).
* Moves the universal printer from gmock to gtest and refactors the cmake ↵zhanyong.wan2010-05-104-12/+1158
| | | | script for reusing in gmock (by Vlad Losev).
* Silence a Clang warning about an unused variable.chandlerc2010-05-091-1/+1
|
* Adds alternative spellings for FAIL, SUCCEED, and TEST.zhanyong.wan2010-04-131-3/+20
|
* C++ Builder compatibility patch by Josh Kelley.vladlosev2010-04-071-0/+5
|
* Fixes a leak in ThreadLocal.zhanyong.wan2010-03-261-4/+20
|
* Fixes compatibility with Visual Age versions lower than 9.0 (by Hady Zalek); ↵zhanyong.wan2010-03-261-11/+6
| | | | updates the release notes.
* Supports no-RTTI mode on AIX (by Hady Zalek).zhanyong.wan2010-03-251-1/+11
|
* Makes the cmake script work on Solaris and AIX (by Hady Zalek).zhanyong.wan2010-03-251-1/+1
|
* Enables death tests on AIX, by Hady Zalek.zhanyong.wan2010-03-231-1/+2
|
* Makes gtest work with Sun Studio. Patch submitted by Hady Zalek.zhanyong.wan2010-03-234-45/+73
|
* Adds missing gtest DLL exports.zhanyong.wan2010-03-224-31/+32
|
* Fixes comments and tests for the moment of generator parameter evaluation in ↵vladlosev2010-03-201-3/+6
| | | | INSTANTIATE_TEST_CASE_P.
* Solaris and AIX patch by Hady Zalekvladlosev2010-03-171-17/+55
|
* Fixes a -Wextra warning in gtest-param-util.h and updates the cmake script ↵zhanyong.wan2010-03-171-1/+2
| | | | to verify it (by Zhanyong Wan); adds support for hermetic build to the cmake script (by Vlad Losev).
* Fixes a typo in comment, by Vlad Losev.zhanyong.wan2010-03-151-1/+1
|
* Supports building gtest as a DLL (by Vlad Losev).zhanyong.wan2010-03-0511-93/+118
|
* Simplifies ThreadWithParam.zhanyong.wan2010-03-041-40/+20
|
* Renames ThreadStartSempahore to Notificaton (by Vlad Losev); adds threading ↵zhanyong.wan2010-03-042-88/+108
| | | | 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-12/+26
|
* Simplifies the threading implementation and improves some comments.zhanyong.wan2010-02-251-106/+112
|
* Simplifies the implementation by using std::vector instead of Vector.zhanyong.wan2010-02-253-19/+17
|
* Adds threading support (by Miklos Fazekas, Vlad Losev, and Chandler ↵zhanyong.wan2010-02-242-34/+294
| | | | Carruth); adds wide InitGoogleTest to gtest.def (by Vlad Losev); updates the version number (by Zhanyong Wan); updates the release notes for 1.5.0 (by Vlad Losev); removes scons scripts from the distribution (by Zhanyong Wan); adds the cmake build script to the distribution (by Zhanyong Wan); adds fused source files to the distribution (by Vlad Losev and Chandler Carruth).
* Adds Solaris support (by Hady Zalek)vladlosev2010-02-034-20/+34
|
* Adds support for alternate path separator on Windows, and make all tests ↵zhanyong.wan2010-02-022-0/+11
| | | | pass with CMake and VC++ 9 (by Manuel Klimek).
* Introduces macro GTEST_HAS_STREAM_REDIRECTION_ (by Vlad Losev); fixes ↵zhanyong.wan2010-01-281-3/+9
| | | | unsynchronized color text output on Windows (by Vlad Losev); fixes the cmake script to work with MSVC 10 (by Manuel Klimek).
* Implements stdout capturing (by Vlad Losev); fixes compiler error on NVCC ↵zhanyong.wan2010-01-271-4/+19
| | | | (by Zhanyong Wan).
* Changes Message() to print double with enough precision by default.zhanyong.wan2010-01-081-1/+7
|
* Fixes a typo in gtest-port.h, by Manuel Klimek.zhanyong.wan2010-01-071-1/+1
|
* Fixes issue 217: lets MSVC 10 uses its own tr1 tuple.zhanyong.wan2010-01-051-9/+8
|
* Adds macro GTEST_DISALLOW_ASSIGN_, needed by gmock.zhanyong.wan2009-12-231-6/+11
|
* Removes uses of GTEST_HAS_STD_STRING.zhanyong.wan2009-12-164-79/+22
|
* Turns on -Wshadow (by Preston Jackson).zhanyong.wan2009-12-165-35/+38
|
* Stops supporting MSVC 7.1 with exceptions disabled.zhanyong.wan2009-12-141-0/+4
|
* Fixes the "passing non-POD to ellipsis" warning in Sun Studio. Based on ↵zhanyong.wan2009-12-072-16/+14
| | | | Alexander Demin's patch.
* Exposes SkipPrefix s.t. it can be used by gmock (by Vlad Losev).zhanyong.wan2009-12-011-0/+5
|
* Implements the element_type typedef in testing::internal::scoped_ptr. This ↵vladlosev2009-11-171-0/+2
| | | | is needed to test gmock's IsNull/NotNull with it.
* Improves the scons scripts and run_tests.py (by Vlad Losev); uses typed ↵zhanyong.wan2009-11-132-0/+30
| | | | tests in gtest-port_test.cc only when typed tests are available (by Zhanyong Wan); makes gtest-param-util-generated.h conform to the C++ standard (by Zhanyong Wan).
* Fixes the code to work with fuse_gtest.py.zhanyong.wan2009-11-105-17/+30
|
* Prints help when encountering unrecognized Google Test flags.vladlosev2009-10-221-0/+1
|
* Implements support for AssertionResult in Boolean assertions such as ↵vladlosev2009-10-204-50/+145
| | | | EXPECT_TRUE; Fixes Google Tests's tuple implementation to default-initialize its fields in the default constructor (by Zhanyong Wan); Populates gtest_stress_test.cc with actual tests.