/Unittests/googletest/CHANGES

http://unladen-swallow.googlecode.com/ · #! · 76 lines · 63 code · 13 blank · 0 comment · 0 complexity · 3b7e7737f6154d4cc8c8610ecf78947c MD5 · raw file

  1. Changes for 1.4.0:
  2. * New feature: the event listener API
  3. * New feature: test shuffling
  4. * New feature: the XML report format is closer to junitreport and can
  5. be parsed by Hudson now.
  6. * New feature: when a test runs under Visual Studio, its failures are
  7. integrated in the IDE.
  8. * New feature: /MD(d) versions of VC++ projects.
  9. * New feature: elapsed time for the tests is printed by default.
  10. * New feature: comes with a TR1 tuple implementation such that Boost
  11. is no longer needed for Combine().
  12. * New feature: EXPECT_DEATH_IF_SUPPORTED macro and friends.
  13. * New feature: the Xcode project can now produce static gtest
  14. libraries in addition to a framework.
  15. * Compatibility fixes for Solaris, Cygwin, minGW, Windows Mobile,
  16. Symbian, gcc, and C++Builder.
  17. * Bug fixes and implementation clean-ups.
  18. Changes for 1.3.0:
  19. * New feature: death tests on Windows, Cygwin, and Mac.
  20. * New feature: ability to use Google Test assertions in other testing
  21. frameworks.
  22. * New feature: ability to run disabled test via
  23. --gtest_also_run_disabled_tests.
  24. * New feature: the --help flag for printing the usage.
  25. * New feature: access to Google Test flag values in user code.
  26. * New feature: a script that packs Google Test into one .h and one
  27. .cc file for easy deployment.
  28. * New feature: support for distributing test functions to multiple
  29. machines (requires support from the test runner).
  30. * Bug fixes and implementation clean-ups.
  31. Changes for 1.2.1:
  32. * Compatibility fixes for Linux IA-64 and IBM z/OS.
  33. * Added support for using Boost and other TR1 implementations.
  34. * Changes to the build scripts to support upcoming release of Google C++
  35. Mocking Framework.
  36. * Added Makefile to the distribution package.
  37. * Improved build instructions in README.
  38. Changes for 1.2.0:
  39. * New feature: value-parameterized tests.
  40. * New feature: the ASSERT/EXPECT_(NON)FATAL_FAILURE(_ON_ALL_THREADS)
  41. macros.
  42. * Changed the XML report format to match JUnit/Ant's.
  43. * Added tests to the Xcode project.
  44. * Added scons/SConscript for building with SCons.
  45. * Added src/gtest-all.cc for building Google Test from a single file.
  46. * Fixed compatibility with Solaris and z/OS.
  47. * Enabled running Python tests on systems with python 2.3 installed,
  48. e.g. Mac OS X 10.4.
  49. * Bug fixes.
  50. Changes for 1.1.0:
  51. * New feature: type-parameterized tests.
  52. * New feature: exception assertions.
  53. * New feature: printing elapsed time of tests.
  54. * Improved the robustness of death tests.
  55. * Added an Xcode project and samples.
  56. * Adjusted the output format on Windows to be understandable by Visual Studio.
  57. * Minor bug fixes.
  58. Changes for 1.0.1:
  59. * Added project files for Visual Studio 7.1.
  60. * Fixed issues with compiling on Mac OS X.
  61. * Fixed issues with compiling on Cygwin.
  62. Changes for 1.0.0:
  63. * Initial Open Source release of Google Test