summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorzhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925>2013-04-24 02:48:07 +0000
committerzhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925>2013-04-24 02:48:07 +0000
commit03f2695f34fb7224b643828de1ce242a749dab42 (patch)
tree579dbb36e9828a7b80dfa07660a754d4f6c27d54 /CHANGES
parentb3d0b4ea4ab877a355e79dd0de704577811fff0f (diff)
downloadgtest-03f2695f34fb7224b643828de1ce242a749dab42.tar.gz
gtest-03f2695f34fb7224b643828de1ce242a749dab42.tar.bz2
gtest-03f2695f34fb7224b643828de1ce242a749dab42.tar.xz
Fixes a thread annotation; updates CHANGES for 1.7.0
git-svn-id: http://googletest.googlecode.com/svn/trunk@653 861a406c-534a-0410-8894-cb66d6ee9925
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES19
1 files changed, 18 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 4cdc381..f2968d6 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,23 @@
Changes for 1.7.0:
-TO BE WRITTEN.
+* New feature: death tests are supported on OpenBSD and in iOS
+ simulator now.
+* New feature: Test::RecordProperty() can now be used outside of the
+ lifespan of a test method, in which case it will be attributed to
+ the current test case or the test program in the XML report.
+* New feature (potentially breaking): --gtest_list_tests now prints
+ the type parameters and value parameters for each test.
+* Improvement: char pointers and char arrays are now escaped properly
+ in failure messages.
+* Improvement: failure summary in XML reports now includes file and
+ line information.
+* Improvement: the <testsuites> XML element now has a timestamp attribute.
+* Fixed the bug where long --gtest_filter flag values are truncated in
+ death tests.
+* Potentially breaking change: RUN_ALL_TESTS() is now implemented as a
+ function instead of a macro in order to work better with Clang.
+* Compatibility fixes with C++ 11 and various platforms.
+* Bug/warning fixes.
Changes for 1.6.0: