OLD | NEW |
| 1 Changes for 1.7.0: |
| 2 |
| 3 * New feature: death tests are supported on OpenBSD and in iOS |
| 4 simulator now. |
| 5 * New feature: Google Test now implements a protocol to allow |
| 6 a test runner to detect that a test program has exited |
| 7 prematurely and report it as a failure (before it would be |
| 8 falsely reported as a success if the exit code is 0). |
| 9 * New feature: Test::RecordProperty() can now be used outside of the |
| 10 lifespan of a test method, in which case it will be attributed to |
| 11 the current test case or the test program in the XML report. |
| 12 * New feature (potentially breaking): --gtest_list_tests now prints |
| 13 the type parameters and value parameters for each test. |
| 14 * Improvement: char pointers and char arrays are now escaped properly |
| 15 in failure messages. |
| 16 * Improvement: failure summary in XML reports now includes file and |
| 17 line information. |
| 18 * Improvement: the <testsuites> XML element now has a timestamp attribute. |
| 19 * Improvement: When --gtest_filter is specified, XML report now doesn't |
| 20 contain information about tests that are filtered out. |
| 21 * Fixed the bug where long --gtest_filter flag values are truncated in |
| 22 death tests. |
| 23 * Potentially breaking change: RUN_ALL_TESTS() is now implemented as a |
| 24 function instead of a macro in order to work better with Clang. |
| 25 * Compatibility fixes with C++ 11 and various platforms. |
| 26 * Bug/warning fixes. |
| 27 |
1 Changes for 1.6.0: | 28 Changes for 1.6.0: |
2 | 29 |
3 * New feature: ADD_FAILURE_AT() for reporting a test failure at the | 30 * New feature: ADD_FAILURE_AT() for reporting a test failure at the |
4 given source location -- useful for writing testing utilities. | 31 given source location -- useful for writing testing utilities. |
5 * New feature: the universal value printer is moved from Google Mock | 32 * New feature: the universal value printer is moved from Google Mock |
6 to Google Test. | 33 to Google Test. |
7 * New feature: type parameters and value parameters are reported in | 34 * New feature: type parameters and value parameters are reported in |
8 the XML report now. | 35 the XML report now. |
9 * A gtest_disable_pthreads CMake option. | 36 * A gtest_disable_pthreads CMake option. |
10 * Colored output works in GNU Screen sessions now. | 37 * Colored output works in GNU Screen sessions now. |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 | 148 |
122 Changes for 1.0.1: | 149 Changes for 1.0.1: |
123 | 150 |
124 * Added project files for Visual Studio 7.1. | 151 * Added project files for Visual Studio 7.1. |
125 * Fixed issues with compiling on Mac OS X. | 152 * Fixed issues with compiling on Mac OS X. |
126 * Fixed issues with compiling on Cygwin. | 153 * Fixed issues with compiling on Cygwin. |
127 | 154 |
128 Changes for 1.0.0: | 155 Changes for 1.0.0: |
129 | 156 |
130 * Initial Open Source release of Google Test | 157 * Initial Open Source release of Google Test |
OLD | NEW |