summaryrefslogtreecommitdiff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* Simplifies ThreadStartSemaphore's implementation.zhanyong.wan2010-02-261-40/+0
* Fixes MSVC warnings in 64-bit mode.zhanyong.wan2010-02-253-13/+14
* Simplifies the threading implementation and improves some comments.zhanyong.wan2010-02-251-57/+9
* Simplifies the implementation by using std::vector instead of Vector.zhanyong.wan2010-02-253-364/+162
* Adds threading support (by Miklos Fazekas, Vlad Losev, and Chandler Carruth);...zhanyong.wan2010-02-243-2/+93
* Adds Solaris support to test scripts.vladlosev2010-02-111-1/+8
* Adds Solaris support (by Hady Zalek)vladlosev2010-02-033-6/+26
* Adds support for alternate path separator on Windows, and make all tests pass...zhanyong.wan2010-02-021-11/+50
* Introduces macro GTEST_HAS_STREAM_REDIRECTION_ (by Vlad Losev); fixes unsynch...zhanyong.wan2010-01-282-6/+7
* Implements stdout capturing (by Vlad Losev); fixes compiler error on NVCC (by...zhanyong.wan2010-01-272-54/+75
* Changes Message() to print double with enough precision by default.zhanyong.wan2010-01-081-10/+8
* Moves gtest.def from src/ to msvc/.zhanyong.wan2009-12-181-123/+0
* Supports building gtest as a DLL (by Vlad Losev).zhanyong.wan2009-12-181-0/+123
* Removes uses of GTEST_HAS_STD_STRING.zhanyong.wan2009-12-161-14/+0
* Turns on -Wshadow (by Preston Jackson).zhanyong.wan2009-12-163-41/+42
* Exposes SkipPrefix s.t. it can be used by gmock (by Vlad Losev).zhanyong.wan2009-12-011-12/+12
* Prevents Google Test from printing help message upon seeing the --gtest_stack...vladlosev2009-11-172-5/+11
* Fixes the code to work with fuse_gtest.py.zhanyong.wan2009-11-101-0/+6
* Fixes linker error when used with gMock on Windowsvladlosev2009-10-231-3/+3
* Prints help when encountering unrecognized Google Test flags.vladlosev2009-10-221-1/+31
* Implements support for AssertionResult in Boolean assertions such as EXPECT_T...vladlosev2009-10-201-5/+35
* Fixes: Scons build file broken when used in another SConstruct; warning in VC...vladlosev2009-10-141-1/+2
* Refactors the scons script (by Vlad Losev).zhanyong.wan2009-09-301-2/+2
* Implements test shuffling (by Zhanyong Wan, based on Josh Kelley's original p...zhanyong.wan2009-09-302-39/+206
* Makes gtest compile cleanly with MSVC's /W4 (by Zhanyong Wan).zhanyong.wan2009-09-303-52/+104
* Publishes the even listener API (by Vlad Losev); adds OS-indicating macros to...zhanyong.wan2009-09-244-94/+72
* Adds a Random class to support --gtest_shuffle (by Josh Kelley); Makes the sc...zhanyong.wan2009-09-211-1/+20
* Renames the TestPartResult type enums and adjusts the order of methods in the...zhanyong.wan2009-09-182-56/+58
* Renames the methods in the event listener API, and changes the order of *End ...zhanyong.wan2009-09-171-67/+101
* Makes gtest compile clean with MSVC's warning 4100 (unused formal parameter) ...zhanyong.wan2009-09-171-1/+2
* Small code simplification (by Vlad Losev).zhanyong.wan2009-09-161-4/+3
* Simplifies the implementation of GTEST_LOG_ & GTEST_LOG_; renameszhanyong.wan2009-09-162-22/+24
* Removes deprecated /Wp64 flag from VC projects; also removes unneeded VC proj...zhanyong.wan2009-09-111-2/+3
* More implementation of the event listener interface (by Vlad Losev); Reduces ...zhanyong.wan2009-09-043-230/+270
* Enables String to contain NUL (by Zhanyong Wan); Adds scons scripts (by Vlad ...zhanyong.wan2009-09-013-59/+40
* Fixes an uninitialized field in class OsStackTraceGetter.zhanyong.wan2009-08-261-1/+1
* Implements EXPECT_DEATH_IF_SUPPORTED (by Vlad Losev); Fixes compatibility wit...zhanyong.wan2009-08-072-14/+6
* Makes gtest compilable on Win CE.zhanyong.wan2009-07-231-2/+7
* Makes gtest compile clean with gcc -Wall -Werror (by Zhanyong Wan); refactors...zhanyong.wan2009-07-221-2/+3
* More refactoring for the event listener API, by Vlad Losev.zhanyong.wan2009-07-162-44/+50
* Makes gtest report failures to Visual Studio's Output window. Based on code ...zhanyong.wan2009-07-151-4/+14
* Adds the command line flags needed for test shuffling. Most code by Josh Kel...zhanyong.wan2009-07-142-8/+96
* Adds color support for TERM=linux (by Alexander Demin); renames List to Vecto...zhanyong.wan2009-07-133-50/+61
* Makes List a random-access data structure. This simplifies the implementatio...zhanyong.wan2009-07-013-302/+134
* Reduces the flakiness of gtest-port_test on Mac; improves the Python tests; h...zhanyong.wan2009-07-012-16/+0
* Makes list traversal O(N) instead of O(N^2) (by Zhanyong Wan).zhanyong.wan2009-06-251-12/+51