CHANGES 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. Changes for 1.3.0:
  2. * New feature: death tests on Windows, Cygwin, and Mac.
  3. * New feature: ability to use Google Test assertions in other testing
  4. frameworks.
  5. * New feature: ability to run disabled test via
  6. --gtest_also_run_disabled_tests.
  7. * New feature: the --help flag for printing the usage.
  8. * New feature: access to Google Test flag values in user code.
  9. * New feature: a script that packs Google Test into one .h and one
  10. .cc file for easy deployment.
  11. * New feature: support for distributing test functions to multiple
  12. machines (requires support from the test runner).
  13. * Bug fixes and implementation clean-up.
  14. Changes for 1.2.1:
  15. * Compatibility fixes for Linux IA-64 and IBM z/OS.
  16. * Added support for using Boost and other TR1 implementations.
  17. * Changes to the build scripts to support upcoming release of Google C++
  18. Mocking Framework.
  19. * Added Makefile to the distribution package.
  20. * Improved build instructions in README.
  21. Changes for 1.2.0:
  22. * New feature: value-parameterized tests.
  23. * New feature: the ASSERT/EXPECT_(NON)FATAL_FAILURE(_ON_ALL_THREADS)
  24. macros.
  25. * Changed the XML report format to match JUnit/Ant's.
  26. * Added tests to the Xcode project.
  27. * Added scons/SConscript for building with SCons.
  28. * Added src/gtest-all.cc for building Google Test from a single file.
  29. * Fixed compatibility with Solaris and z/OS.
  30. * Enabled running Python tests on systems with python 2.3 installed,
  31. e.g. Mac OS X 10.4.
  32. * Bug fixes.
  33. Changes for 1.1.0:
  34. * New feature: type-parameterized tests.
  35. * New feature: exception assertions.
  36. * New feature: printing elapsed time of tests.
  37. * Improved the robustness of death tests.
  38. * Added an Xcode project and samples.
  39. * Adjusted the output format on Windows to be understandable by Visual Studio.
  40. * Minor bug fixes.
  41. Changes for 1.0.1:
  42. * Added project files for Visual Studio 7.1.
  43. * Fixed issues with compiling on Mac OS X.
  44. * Fixed issues with compiling on Cygwin.
  45. Changes for 1.0.0:
  46. * Initial Open Source release of Google Test