aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Create custom/gtest-port.h to hold custom logic.kosak2015-07-143-76/+209
|
* Add GTEST_ATTRIBUTE_UNUSED_ to the dummy variable generated inkosak2015-07-132-2/+2
| | | | INSTANTIATE_TEST_CASE_P.
* fully-qualify use of scoped_ptr namekosak2015-07-132-3/+2
|
* urxvt supports colorskosak2015-04-282-0/+8
|
* Work around some unsigned->signed warnings in our tests/.kosak2015-04-283-19/+20
| | | | Thanks to Diego Barrios Romero <eldruin@gmail.com>.
* Make an int64->double conversion explicit to silence -Wconversion.kosak2015-04-281-1/+1
| | | | | Addresses issue #173: https://code.google.com/p/googlemock/issues/detail?id=173
* Enable GTest thread safety on Native Client.kosak2015-02-141-3/+3
|
* Add asserts to prevent mysterious hangs in a non-thread-safe gmock build.kosak2015-02-141-2/+12
|
* Add FreeBSD support.kosak2015-01-221-3/+6
|
* Fix build regression with old (Xcode 5.1) clangs.kosak2015-01-141-4/+8
|
* Fix build of Objective-C++ files with new clang versions.kosak2015-01-081-0/+5
|
* Small Mingw localtime() fix.kosak2015-01-081-9/+18
| | | | | Thanks tberghammer for pointing it out. https://codereview.appspot.com/185420043/
* Change an example to use 'override' rather than 'virtual'. Add missing ↵kosak2015-01-082-2/+4
| | | | headers for 'connect' and 'socket'.
* Noop changes to suppress compile-time warnings in WINDOWS code paths.kosak2014-11-172-1/+2
|
* Remove special support for GTEST_OS_IOS_SIMULATOR.kosak2014-11-171-5/+1
|
* Strip trailing whitespace when stringifying type lists.kosak2014-11-174-8/+42
|
* Clang-on-Windows can support GTEST_ATTRIBUTE_UNUSED_.kosak2014-11-171-3/+14
|
* Call move() by qualified name (::testing::internal::move() or just ↵kosak2014-11-171-2/+2
| | | | internal::move()).
* Add ByMove() modifier for the Return() action.kosak2014-11-171-8/+11
|
* Distinguish between C++11 language and library support for std::function, ↵kosak2014-11-172-7/+29
| | | | std::begin, std::end, and std::move in gtest and gmock.
* Reduce the stack frame size for CmpHelper* functions by moving the failure ↵kosak2014-11-171-9/+31
| | | | path into their own functions.
* Mock out GetCurrentDir in NaCl.kosak2014-07-291-1/+8
|
* Expand equality failure messages with a by-line diff.kosak2014-07-285-5/+433
|
* Additional changes, to add support for Windows Phone and Windows RTkosak2014-06-181-3/+5
|
* Reduce the number of occurrences of gendered pronouns in gtest.kosak2014-06-186-25/+25
|
* Disable asan instrumentation for StackGrowsDown().kosak2014-06-171-0/+2
|
* Push upstream to SVN.billydonahue2014-05-1511-203/+241
|
* Export tuple and friends in the ::testing namespace.kosak2014-04-025-51/+70
|
* Implement threading support for gtest on Windows.kosak2014-03-247-151/+911
| | | | Also, stop using localtime(). Instead, use localtime_r() on most systems, localtime_s() on Windows.
* Add annotations to suppress ThreadSanitizer failures due to gunit/gmock printer.kosak2014-03-122-0/+15
|
* Remove code referencing Google protocol buffers version 1.kosak2014-03-121-7/+0
|
* Standards compliance changes to fix QNX build.kosak2014-03-122-1/+3
|
* Suppress "Conditional expression is constant" warning on Visual Studio.kosak2014-01-294-1/+39
|
* Add GTEST_MOVE macro, to support mocking methods with move-only return types.kosak2014-01-292-2/+28
| | | | Add GTEST_ATTRIBUTE_NO_SANITIZE_ADDRESS_
* Make Google Test build cleanly on Visual Studio 2010, 2012, 2013.kosak2014-01-136-14/+45
| | | | Also improve an error message in gtest_test_utils.py.
* Fix a couple of typos in Google Test's README.kosak2014-01-121-2/+2
|
* Define specialization of PrintTo(...) for ::std::tuple.kosak2014-01-123-67/+227
|
* Improves documentation on gtest's macros.kosak2014-01-123-16/+310
| | | | | Adds script to automate releasing new version of wiki docs.
* Distinguish between C++11 language and library support for <initializer_list>.kosak2013-12-042-1/+9
| | | | Fix spelling: repositary -> repository.
* Fix warnings encountered with clang -Wall.kosak2013-12-033-4/+8
|
* Add MemorySanitizer annotations in gtest printers. Also remove unused ↵kosak2013-12-033-2/+16
| | | | variable kPathSeparatorString.
* Delete whitespace, and change the return type of ↵kosak2013-12-032-3/+1
| | | | ImplicitlyConvertible::MakeFrom() to From&.
* avoids clash with the max() macro on Windowszhanyong.wan2013-09-182-7/+16
|
* supports a protocol for catching tests that prematurely exitzhanyong.wan2013-09-068-22/+247
|
* Updates gtest.xcodeproj to be compatible with OS X 10.8.4 & Xcode 4.6.3zhanyong.wan2013-08-271-3/+54
|
* fixes a typo in CMake script; h/t to Jay Mueller for reporting the issuezhanyong.wan2013-07-091-1/+1
|
* allows gtest-config.in to work with an absoulte path for @top_srcdir@. h/t ↵zhanyong.wan2013-07-081-1/+1
| | | | to Jimi Xenidis for reporting the issue and the fix.
* makes gtest-death-test_test.cc compile on platforms that don't support death ↵zhanyong.wan2013-07-081-20/+21
| | | | tests; h/t to Steve Robbins for reporting the issue and suggesting the fix.
* Fixes compatibility with C++11: (1 - 1) is no longer a NULL pointer constant.zhanyong.wan2013-06-182-10/+5
|
* When --gtest_filter is specified, XML report now doesn't contain information ↵vladlosev2013-04-257-29/+123
| | | | about tests that are filtered out (issue 141).