Blame googletest/CHANGES

Packit bd1cd8
Changes for 1.7.0:
Packit bd1cd8
Packit bd1cd8
* New feature: death tests are supported on OpenBSD and in iOS
Packit bd1cd8
  simulator now.
Packit bd1cd8
* New feature: Google Test now implements a protocol to allow
Packit bd1cd8
  a test runner to detect that a test program has exited
Packit bd1cd8
  prematurely and report it as a failure (before it would be
Packit bd1cd8
  falsely reported as a success if the exit code is 0).
Packit bd1cd8
* New feature: Test::RecordProperty() can now be used outside of the
Packit bd1cd8
  lifespan of a test method, in which case it will be attributed to
Packit bd1cd8
  the current test case or the test program in the XML report.
Packit bd1cd8
* New feature (potentially breaking): --gtest_list_tests now prints
Packit bd1cd8
  the type parameters and value parameters for each test.
Packit bd1cd8
* Improvement: char pointers and char arrays are now escaped properly
Packit bd1cd8
  in failure messages.
Packit bd1cd8
* Improvement: failure summary in XML reports now includes file and
Packit bd1cd8
  line information.
Packit bd1cd8
* Improvement: the <testsuites> XML element now has a timestamp attribute.
Packit bd1cd8
* Improvement: When --gtest_filter is specified, XML report now doesn't
Packit bd1cd8
  contain information about tests that are filtered out.
Packit bd1cd8
* Fixed the bug where long --gtest_filter flag values are truncated in
Packit bd1cd8
  death tests.
Packit bd1cd8
* Potentially breaking change: RUN_ALL_TESTS() is now implemented as a
Packit bd1cd8
  function instead of a macro in order to work better with Clang.
Packit bd1cd8
* Compatibility fixes with C++ 11 and various platforms.
Packit bd1cd8
* Bug/warning fixes.
Packit bd1cd8
Packit bd1cd8
Changes for 1.6.0:
Packit bd1cd8
Packit bd1cd8
* New feature: ADD_FAILURE_AT() for reporting a test failure at the
Packit bd1cd8
  given source location -- useful for writing testing utilities.
Packit bd1cd8
* New feature: the universal value printer is moved from Google Mock
Packit bd1cd8
  to Google Test.
Packit bd1cd8
* New feature: type parameters and value parameters are reported in
Packit bd1cd8
  the XML report now.
Packit bd1cd8
* A gtest_disable_pthreads CMake option.
Packit bd1cd8
* Colored output works in GNU Screen sessions now.
Packit bd1cd8
* Parameters of value-parameterized tests are now printed in the
Packit bd1cd8
  textual output.
Packit bd1cd8
* Failures from ad hoc test assertions run before RUN_ALL_TESTS() are
Packit bd1cd8
  now correctly reported.
Packit bd1cd8
* Arguments of ASSERT_XY and EXPECT_XY no longer need to support << to
Packit bd1cd8
  ostream.
Packit bd1cd8
* More complete handling of exceptions.
Packit bd1cd8
* GTEST_ASSERT_XY can be used instead of ASSERT_XY in case the latter
Packit bd1cd8
  name is already used by another library.
Packit bd1cd8
* --gtest_catch_exceptions is now true by default, allowing a test
Packit bd1cd8
  program to continue after an exception is thrown.
Packit bd1cd8
* Value-parameterized test fixtures can now derive from Test and
Packit bd1cd8
  WithParamInterface<T> separately, easing conversion of legacy tests.
Packit bd1cd8
* Death test messages are clearly marked to make them more
Packit bd1cd8
  distinguishable from other messages.
Packit bd1cd8
* Compatibility fixes for Android, Google Native Client, MinGW, HP UX,
Packit bd1cd8
  PowerPC, Lucid autotools, libCStd, Sun C++, Borland C++ Builder (Code Gear),
Packit bd1cd8
  IBM XL C++ (Visual Age C++), and C++0x.
Packit bd1cd8
* Bug fixes and implementation clean-ups.
Packit bd1cd8
* Potentially incompatible changes: disables the harmful 'make install'
Packit bd1cd8
  command in autotools.
Packit bd1cd8
Packit bd1cd8
Changes for 1.5.0:
Packit bd1cd8
Packit bd1cd8
 * New feature: assertions can be safely called in multiple threads
Packit bd1cd8
   where the pthreads library is available.
Packit bd1cd8
 * New feature: predicates used inside EXPECT_TRUE() and friends
Packit bd1cd8
   can now generate custom failure messages.
Packit bd1cd8
 * New feature: Google Test can now be compiled as a DLL.
Packit bd1cd8
 * New feature: fused source files are included.
Packit bd1cd8
 * New feature: prints help when encountering unrecognized Google Test flags.
Packit bd1cd8
 * Experimental feature: CMake build script (requires CMake 2.6.4+).
Packit bd1cd8
 * Experimental feature: the Pump script for meta programming.
Packit bd1cd8
 * double values streamed to an assertion are printed with enough precision
Packit bd1cd8
   to differentiate any two different values.
Packit bd1cd8
 * Google Test now works on Solaris and AIX.
Packit bd1cd8
 * Build and test script improvements.
Packit bd1cd8
 * Bug fixes and implementation clean-ups.
Packit bd1cd8
Packit bd1cd8
 Potentially breaking changes:
Packit bd1cd8
Packit bd1cd8
 * Stopped supporting VC++ 7.1 with exceptions disabled.
Packit bd1cd8
 * Dropped support for 'make install'.
Packit bd1cd8
Packit bd1cd8
Changes for 1.4.0:
Packit bd1cd8
Packit bd1cd8
 * New feature: the event listener API
Packit bd1cd8
 * New feature: test shuffling
Packit bd1cd8
 * New feature: the XML report format is closer to junitreport and can
Packit bd1cd8
   be parsed by Hudson now.
Packit bd1cd8
 * New feature: when a test runs under Visual Studio, its failures are
Packit bd1cd8
   integrated in the IDE.
Packit bd1cd8
 * New feature: /MD(d) versions of VC++ projects.
Packit bd1cd8
 * New feature: elapsed time for the tests is printed by default.
Packit bd1cd8
 * New feature: comes with a TR1 tuple implementation such that Boost
Packit bd1cd8
   is no longer needed for Combine().
Packit bd1cd8
 * New feature: EXPECT_DEATH_IF_SUPPORTED macro and friends.
Packit bd1cd8
 * New feature: the Xcode project can now produce static gtest
Packit bd1cd8
   libraries in addition to a framework.
Packit bd1cd8
 * Compatibility fixes for Solaris, Cygwin, minGW, Windows Mobile,
Packit bd1cd8
   Symbian, gcc, and C++Builder.
Packit bd1cd8
 * Bug fixes and implementation clean-ups.
Packit bd1cd8
Packit bd1cd8
Changes for 1.3.0:
Packit bd1cd8
Packit bd1cd8
 * New feature: death tests on Windows, Cygwin, and Mac.
Packit bd1cd8
 * New feature: ability to use Google Test assertions in other testing
Packit bd1cd8
   frameworks.
Packit bd1cd8
 * New feature: ability to run disabled test via
Packit bd1cd8
   --gtest_also_run_disabled_tests.
Packit bd1cd8
 * New feature: the --help flag for printing the usage.
Packit bd1cd8
 * New feature: access to Google Test flag values in user code.
Packit bd1cd8
 * New feature: a script that packs Google Test into one .h and one
Packit bd1cd8
   .cc file for easy deployment.
Packit bd1cd8
 * New feature: support for distributing test functions to multiple
Packit bd1cd8
   machines (requires support from the test runner).
Packit bd1cd8
 * Bug fixes and implementation clean-ups.
Packit bd1cd8
Packit bd1cd8
Changes for 1.2.1:
Packit bd1cd8
Packit bd1cd8
 * Compatibility fixes for Linux IA-64 and IBM z/OS.
Packit bd1cd8
 * Added support for using Boost and other TR1 implementations.
Packit bd1cd8
 * Changes to the build scripts to support upcoming release of Google C++
Packit bd1cd8
   Mocking Framework.
Packit bd1cd8
 * Added Makefile to the distribution package.
Packit bd1cd8
 * Improved build instructions in README.
Packit bd1cd8
Packit bd1cd8
Changes for 1.2.0:
Packit bd1cd8
Packit bd1cd8
 * New feature: value-parameterized tests.
Packit bd1cd8
 * New feature: the ASSERT/EXPECT_(NON)FATAL_FAILURE(_ON_ALL_THREADS)
Packit bd1cd8
   macros.
Packit bd1cd8
 * Changed the XML report format to match JUnit/Ant's.
Packit bd1cd8
 * Added tests to the Xcode project.
Packit bd1cd8
 * Added scons/SConscript for building with SCons.
Packit bd1cd8
 * Added src/gtest-all.cc for building Google Test from a single file.
Packit bd1cd8
 * Fixed compatibility with Solaris and z/OS.
Packit bd1cd8
 * Enabled running Python tests on systems with python 2.3 installed,
Packit bd1cd8
   e.g. Mac OS X 10.4.
Packit bd1cd8
 * Bug fixes.
Packit bd1cd8
Packit bd1cd8
Changes for 1.1.0:
Packit bd1cd8
Packit bd1cd8
 * New feature: type-parameterized tests.
Packit bd1cd8
 * New feature: exception assertions.
Packit bd1cd8
 * New feature: printing elapsed time of tests.
Packit bd1cd8
 * Improved the robustness of death tests.
Packit bd1cd8
 * Added an Xcode project and samples.
Packit bd1cd8
 * Adjusted the output format on Windows to be understandable by Visual Studio.
Packit bd1cd8
 * Minor bug fixes.
Packit bd1cd8
Packit bd1cd8
Changes for 1.0.1:
Packit bd1cd8
Packit bd1cd8
 * Added project files for Visual Studio 7.1.
Packit bd1cd8
 * Fixed issues with compiling on Mac OS X.
Packit bd1cd8
 * Fixed issues with compiling on Cygwin.
Packit bd1cd8
Packit bd1cd8
Changes for 1.0.0:
Packit bd1cd8
Packit bd1cd8
 * Initial Open Source release of Google Test