You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

130 lines
5.2 KiB

  1. Changes for 1.6.0:
  2. * New feature: ADD_FAILURE_AT() for reporting a test failure at the
  3. given source location -- useful for writing testing utilities.
  4. * New feature: the universal value printer is moved from Google Mock
  5. to Google Test.
  6. * New feature: type parameters and value parameters are reported in
  7. the XML report now.
  8. * A gtest_disable_pthreads CMake option.
  9. * Colored output works in GNU Screen sessions now.
  10. * Parameters of value-parameterized tests are now printed in the
  11. textual output.
  12. * Failures from ad hoc test assertions run before RUN_ALL_TESTS() are
  13. now correctly reported.
  14. * Arguments of ASSERT_XY and EXPECT_XY no longer need to support << to
  15. ostream.
  16. * More complete handling of exceptions.
  17. * GTEST_ASSERT_XY can be used instead of ASSERT_XY in case the latter
  18. name is already used by another library.
  19. * --gtest_catch_exceptions is now true by default, allowing a test
  20. program to continue after an exception is thrown.
  21. * Value-parameterized test fixtures can now derive from Test and
  22. WithParamInterface<T> separately, easing conversion of legacy tests.
  23. * Death test messages are clearly marked to make them more
  24. distinguishable from other messages.
  25. * Compatibility fixes for Android, Google Native Client, MinGW, HP UX,
  26. PowerPC, Lucid autotools, libCStd, Sun C++, Borland C++ Builder (Code Gear),
  27. IBM XL C++ (Visual Age C++), and C++0x.
  28. * Bug fixes and implementation clean-ups.
  29. * Potentially incompatible changes: disables the harmful 'make install'
  30. command in autotools.
  31. Changes for 1.5.0:
  32. * New feature: assertions can be safely called in multiple threads
  33. where the pthreads library is available.
  34. * New feature: predicates used inside EXPECT_TRUE() and friends
  35. can now generate custom failure messages.
  36. * New feature: Google Test can now be compiled as a DLL.
  37. * New feature: fused source files are included.
  38. * New feature: prints help when encountering unrecognized Google Test flags.
  39. * Experimental feature: CMake build script (requires CMake 2.6.4+).
  40. * Experimental feature: the Pump script for meta programming.
  41. * double values streamed to an assertion are printed with enough precision
  42. to differentiate any two different values.
  43. * Google Test now works on Solaris and AIX.
  44. * Build and test script improvements.
  45. * Bug fixes and implementation clean-ups.
  46. Potentially breaking changes:
  47. * Stopped supporting VC++ 7.1 with exceptions disabled.
  48. * Dropped support for 'make install'.
  49. Changes for 1.4.0:
  50. * New feature: the event listener API
  51. * New feature: test shuffling
  52. * New feature: the XML report format is closer to junitreport and can
  53. be parsed by Hudson now.
  54. * New feature: when a test runs under Visual Studio, its failures are
  55. integrated in the IDE.
  56. * New feature: /MD(d) versions of VC++ projects.
  57. * New feature: elapsed time for the tests is printed by default.
  58. * New feature: comes with a TR1 tuple implementation such that Boost
  59. is no longer needed for Combine().
  60. * New feature: EXPECT_DEATH_IF_SUPPORTED macro and friends.
  61. * New feature: the Xcode project can now produce static gtest
  62. libraries in addition to a framework.
  63. * Compatibility fixes for Solaris, Cygwin, minGW, Windows Mobile,
  64. Symbian, gcc, and C++Builder.
  65. * Bug fixes and implementation clean-ups.
  66. Changes for 1.3.0:
  67. * New feature: death tests on Windows, Cygwin, and Mac.
  68. * New feature: ability to use Google Test assertions in other testing
  69. frameworks.
  70. * New feature: ability to run disabled test via
  71. --gtest_also_run_disabled_tests.
  72. * New feature: the --help flag for printing the usage.
  73. * New feature: access to Google Test flag values in user code.
  74. * New feature: a script that packs Google Test into one .h and one
  75. .cc file for easy deployment.
  76. * New feature: support for distributing test functions to multiple
  77. machines (requires support from the test runner).
  78. * Bug fixes and implementation clean-ups.
  79. Changes for 1.2.1:
  80. * Compatibility fixes for Linux IA-64 and IBM z/OS.
  81. * Added support for using Boost and other TR1 implementations.
  82. * Changes to the build scripts to support upcoming release of Google C++
  83. Mocking Framework.
  84. * Added Makefile to the distribution package.
  85. * Improved build instructions in README.
  86. Changes for 1.2.0:
  87. * New feature: value-parameterized tests.
  88. * New feature: the ASSERT/EXPECT_(NON)FATAL_FAILURE(_ON_ALL_THREADS)
  89. macros.
  90. * Changed the XML report format to match JUnit/Ant's.
  91. * Added tests to the Xcode project.
  92. * Added scons/SConscript for building with SCons.
  93. * Added src/gtest-all.cc for building Google Test from a single file.
  94. * Fixed compatibility with Solaris and z/OS.
  95. * Enabled running Python tests on systems with python 2.3 installed,
  96. e.g. Mac OS X 10.4.
  97. * Bug fixes.
  98. Changes for 1.1.0:
  99. * New feature: type-parameterized tests.
  100. * New feature: exception assertions.
  101. * New feature: printing elapsed time of tests.
  102. * Improved the robustness of death tests.
  103. * Added an Xcode project and samples.
  104. * Adjusted the output format on Windows to be understandable by Visual Studio.
  105. * Minor bug fixes.
  106. Changes for 1.0.1:
  107. * Added project files for Visual Studio 7.1.
  108. * Fixed issues with compiling on Mac OS X.
  109. * Fixed issues with compiling on Cygwin.
  110. Changes for 1.0.0:
  111. * Initial Open Source release of Google Test