Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Supports building gtest as a DLL (by Vlad Losev). | zhanyong.wan | 2010-03-05 | 1 | -1/+1 |
| | |||||
* | Renames ThreadStartSempahore to Notificaton (by Vlad Losev); adds threading ↵ | zhanyong.wan | 2010-03-04 | 1 | -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.wan | 2010-02-26 | 1 | -40/+0 |
| | |||||
* | Fixes MSVC warnings in 64-bit mode. | zhanyong.wan | 2010-02-25 | 3 | -13/+14 |
| | |||||
* | Simplifies the threading implementation and improves some comments. | zhanyong.wan | 2010-02-25 | 1 | -57/+9 |
| | |||||
* | Simplifies the implementation by using std::vector instead of Vector. | zhanyong.wan | 2010-02-25 | 3 | -364/+162 |
| | |||||
* | Adds threading support (by Miklos Fazekas, Vlad Losev, and Chandler ↵ | zhanyong.wan | 2010-02-24 | 3 | -2/+93 |
| | | | | 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 to test scripts. | vladlosev | 2010-02-11 | 1 | -1/+8 |
| | |||||
* | Adds Solaris support (by Hady Zalek) | vladlosev | 2010-02-03 | 3 | -6/+26 |
| | |||||
* | Adds support for alternate path separator on Windows, and make all tests ↵ | zhanyong.wan | 2010-02-02 | 1 | -11/+50 |
| | | | | pass with CMake and VC++ 9 (by Manuel Klimek). | ||||
* | Introduces macro GTEST_HAS_STREAM_REDIRECTION_ (by Vlad Losev); fixes ↵ | zhanyong.wan | 2010-01-28 | 2 | -6/+7 |
| | | | | 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.wan | 2010-01-27 | 2 | -54/+75 |
| | | | | (by Zhanyong Wan). | ||||
* | Changes Message() to print double with enough precision by default. | zhanyong.wan | 2010-01-08 | 1 | -10/+8 |
| | |||||
* | Moves gtest.def from src/ to msvc/. | zhanyong.wan | 2009-12-18 | 1 | -123/+0 |
| | |||||
* | Supports building gtest as a DLL (by Vlad Losev). | zhanyong.wan | 2009-12-18 | 1 | -0/+123 |
| | |||||
* | Removes uses of GTEST_HAS_STD_STRING. | zhanyong.wan | 2009-12-16 | 1 | -14/+0 |
| | |||||
* | Turns on -Wshadow (by Preston Jackson). | zhanyong.wan | 2009-12-16 | 3 | -41/+42 |
| | |||||
* | Exposes SkipPrefix s.t. it can be used by gmock (by Vlad Losev). | zhanyong.wan | 2009-12-01 | 1 | -12/+12 |
| | |||||
* | Prevents Google Test from printing help message upon seeing the ↵ | vladlosev | 2009-11-17 | 2 | -5/+11 |
| | | | | --gtest_stack_trace_depth flag. This was breaking gmock_output_test. | ||||
* | Fixes the code to work with fuse_gtest.py. | zhanyong.wan | 2009-11-10 | 1 | -0/+6 |
| | |||||
* | Fixes linker error when used with gMock on Windows | vladlosev | 2009-10-23 | 1 | -3/+3 |
| | |||||
* | Prints help when encountering unrecognized Google Test flags. | vladlosev | 2009-10-22 | 1 | -1/+31 |
| | |||||
* | Implements support for AssertionResult in Boolean assertions such as ↵ | vladlosev | 2009-10-20 | 1 | -5/+35 |
| | | | | 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. | ||||
* | Fixes: Scons build file broken when used in another SConstruct; warning in ↵ | vladlosev | 2009-10-14 | 1 | -1/+2 |
| | | | | VC 8.0 when compiled with /Wp64 | ||||
* | Refactors the scons script (by Vlad Losev). | zhanyong.wan | 2009-09-30 | 1 | -2/+2 |
| | | | | Fixes a typo in __GNUC__ (by Zhanyong Wan). | ||||
* | Implements test shuffling (by Zhanyong Wan, based on Josh Kelley's original ↵ | zhanyong.wan | 2009-09-30 | 2 | -39/+206 |
| | | | | | | patch). Enables death tests on minGW (by Vlad Losev). | ||||
* | Makes gtest compile cleanly with MSVC's /W4 (by Zhanyong Wan). | zhanyong.wan | 2009-09-30 | 3 | -52/+104 |
| | | | | | | Renames EventListenrs to TestEventListeners (by Zhanyong Wan). Fixes invalid characters in XML report (by Vlad Losev). Refacotrs SConscript (by Vlad Losev). | ||||
* | Publishes the even listener API (by Vlad Losev); adds OS-indicating macros ↵ | zhanyong.wan | 2009-09-24 | 4 | -94/+72 |
| | | | | to simplify gtest code (by Zhanyong Wan). | ||||
* | Adds a Random class to support --gtest_shuffle (by Josh Kelley); Makes the ↵ | zhanyong.wan | 2009-09-21 | 1 | -1/+20 |
| | | | | scons script build in a deterministic order (by Zhanyong Wan). | ||||
* | Renames the TestPartResult type enums and adjusts the order of methods in ↵ | zhanyong.wan | 2009-09-18 | 2 | -56/+58 |
| | | | | the event listener interface (by Vlad Losev). | ||||
* | Renames the methods in the event listener API, and changes the order of *End ↵ | zhanyong.wan | 2009-09-17 | 1 | -67/+101 |
| | | | | events (by Vlad Losev). | ||||
* | Makes gtest compile clean with MSVC's warning 4100 (unused formal parameter) ↵ | zhanyong.wan | 2009-09-17 | 1 | -1/+2 |
| | | | | enabled. | ||||
* | Small code simplification (by Vlad Losev). | zhanyong.wan | 2009-09-16 | 1 | -4/+3 |
| | |||||
* | Simplifies the implementation of GTEST_LOG_ & GTEST_LOG_; renames | zhanyong.wan | 2009-09-16 | 2 | -22/+24 |
| | | | | | GTEST_HIDE_UNREACHABLE_CODE_ to GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_ (by Vlad Losev). | ||||
* | Removes deprecated /Wp64 flag from VC projects; also removes unneeded VC ↵ | zhanyong.wan | 2009-09-11 | 1 | -2/+3 |
| | | | | projects. | ||||
* | More implementation of the event listener interface (by Vlad Losev); Reduces ↵ | zhanyong.wan | 2009-09-04 | 3 | -230/+270 |
| | | | | the stack space usage of assertions by moving AssertHelper's fields to the heap (by Jorg Brown); Makes String faster, smaller, and simpler (by Zhanyong Wan); Fixes a bug in String::Format() (by Chandler); Adds the /MD version of VC projects to the distribution (by Vlad Losev). | ||||
* | Enables String to contain NUL (by Zhanyong Wan); Adds scons scripts (by Vlad ↵ | zhanyong.wan | 2009-09-01 | 3 | -59/+40 |
| | | | | Losev). | ||||
* | Fixes an uninitialized field in class OsStackTraceGetter. | zhanyong.wan | 2009-08-26 | 1 | -1/+1 |
| | |||||
* | Implements EXPECT_DEATH_IF_SUPPORTED (by Vlad Losev); Fixes compatibility ↵ | zhanyong.wan | 2009-08-07 | 2 | -14/+6 |
| | | | | with Symbian (by Araceli Checa); Removes GetCapturedStderr()'s dependency on std::string (by Vlad Losev). | ||||
* | Makes gtest compilable on Win CE. | zhanyong.wan | 2009-07-23 | 1 | -2/+7 |
| | |||||
* | Makes gtest compile clean with gcc -Wall -Werror (by Zhanyong Wan); ↵ | zhanyong.wan | 2009-07-22 | 1 | -2/+3 |
| | | | | refactors scons script (by Vlad Losev). | ||||
* | More refactoring for the event listener API, by Vlad Losev. | zhanyong.wan | 2009-07-16 | 2 | -44/+50 |
| | |||||
* | Makes gtest report failures to Visual Studio's Output window. Based on code ↵ | zhanyong.wan | 2009-07-15 | 1 | -4/+14 |
| | | | | by Alexander Demin. | ||||
* | Adds the command line flags needed for test shuffling. Most code by Josh ↵ | zhanyong.wan | 2009-07-14 | 2 | -8/+96 |
| | | | | Kelley. | ||||
* | Adds color support for TERM=linux (by Alexander Demin); renames List to ↵ | zhanyong.wan | 2009-07-13 | 3 | -50/+61 |
| | | | | Vector (by Zhanyong Wan); implements Vector::Erase (by Vlad Losev). | ||||
* | Makes List a random-access data structure. This simplifies the ↵ | zhanyong.wan | 2009-07-01 | 3 | -302/+134 |
| | | | | implementation and makes it easier to implement test shuffling. | ||||
* | Reduces the flakiness of gtest-port_test on Mac; improves the Python tests; ↵ | zhanyong.wan | 2009-07-01 | 2 | -16/+0 |
| | | | | hides methods that we don't want to publish; makes win-dbg8 the default scons configuration (all by Vlad Losev). | ||||
* | Makes list traversal O(N) instead of O(N^2) (by Zhanyong Wan). | zhanyong.wan | 2009-06-25 | 1 | -12/+51 |
| | |||||
* | Refactors for the event listener API (by Vlad Losev): hides some methods in ↵ | zhanyong.wan | 2009-06-25 | 2 | -95/+81 |
| | | | | UnitTest; implements the result printers using the public API. | ||||
* | Makes gtest's tuple implementation work with Symbian 5th edition by ↵ | zhanyong.wan | 2009-06-24 | 2 | -88/+230 |
| | | | | bypassing 2 compiler bugs (by Zhanyong Wan); refactors for the event listener API (by Vlad Losev). |