summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorzhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925>2011-02-24 07:27:15 +0000
committerzhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925>2011-02-24 07:27:15 +0000
commitba29362bfbba65a953b774a8ecd21e209a3e08ae (patch)
tree93a1e855053d22100ac10d98090a699cad40c8a6 /CHANGES
parent733a54a398766289b74cf3daebe083d7115cf388 (diff)
downloadgtest-ba29362bfbba65a953b774a8ecd21e209a3e08ae.tar.gz
gtest-ba29362bfbba65a953b774a8ecd21e209a3e08ae.tar.bz2
gtest-ba29362bfbba65a953b774a8ecd21e209a3e08ae.tar.xz
Changes gtest's version to 1.6.0 and adds release notes.
git-svn-id: http://googletest.googlecode.com/svn/trunk@545 861a406c-534a-0410-8894-cb66d6ee9925
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES29
1 files changed, 29 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index e574415..c2f8707 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,32 @@
+Changes for 1.6.0:
+
+* New feature: ADD_FAILURE_AT() for reporting a test failure at the
+ given source location -- useful for writing testing utilities.
+* New feature: the universal value printer is moved from Google Mock
+ to Google Test.
+* New feature: type parameters and value parameters are reported in
+ the XML report now.
+* A gtest_disable_pthreads CMake option.
+* Colored output works in GNU Screen sessions now.
+* Parameters of value-parameterized tests are now printed in the
+ textual output.
+* Failures from ad hoc test assertions run before RUN_ALL_TESTS() are
+ now correctly reported.
+* Arguments of ASSERT_XY and EXPECT_XY no longer need to support << to
+ ostream.
+* More complete handling of exceptions.
+* GTEST_ASSERT_XY can be used instead of ASSERT_XY in case the latter
+ name is already used by another library.
+* --gtest_catch_exceptions is now true by default, allowing a test
+ program to continue after an exception is thrown.
+* Value-parameterized test fixtures can now derive from Test and
+ WithParamInterface<T> separately, easing conversion of legacy tests.
+* Death test messages are clearly marked to make them more
+ distinguishable from other messages.
+* Compatibility fixes for Google Native Client, MinGW, Lucid
+ autotools, and C++0x.
+* Bug fixes and implementation clean-ups.
+
Changes for 1.5.0:
* New feature: assertions can be safely called in multiple threads