~ubuntu-branches/ubuntu/oneiric/mozc/oneiric

« back to all changes in this revision

Viewing changes to third_party/gtest/CHANGES

  • Committer: Bazaar Package Importer
  • Author(s): Nobuhiro Iwamatsu
  • Date: 2010-07-14 03:26:47 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100714032647-13qjisj6m8cm8jdx
Tags: 0.12.410.102-1
* New upstream release (Closes: #588971).
  - Add mozc-server, mozc-utils-gui and scim-mozc packages.
* Update debian/rules.
  Add --gypdir option to build_mozc.py.
* Update debian/control.
  - Bumped standards-version to 3.9.0.
  - Update description.
* Add mozc icon (Closes: #588972).
* Add patch which revises issue 18.
  ibus_mozc_issue18.patch
* kFreeBSD build support.
  support_kfreebsd.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Changes for 1.5.0:
2
 
 
3
 
 * New feature: assertions can be safely called in multiple threads
4
 
   where the pthreads library is available.
5
 
 * New feature: predicates used inside EXPECT_TRUE() and friends
6
 
   can now generate custom failure messages.
7
 
 * New feature: Google Test can now be compiled as a DLL.
8
 
 * New feature: fused source files are included.
9
 
 * New feature: prints help when encountering unrecognized Google Test flags.
10
 
 * Experimental feature: CMake build script (requires CMake 2.6.4+).
11
 
 * Experimental feature: the Pump script for meta programming.
12
 
 * double values streamed to an assertion are printed with enough precision
13
 
   to differentiate any two different values.
14
 
 * Google Test now works on Solaris and AIX.
15
 
 * Build and test script improvements.
16
 
 * Bug fixes and implementation clean-ups.
17
 
 
18
 
 Potentially breaking changes:
19
 
 
20
 
 * Stopped supporting VC++ 7.1 with exceptions disabled.
21
 
 * Dropped support for 'make install'.
22
 
 
23
 
Changes for 1.4.0:
24
 
 
25
 
 * New feature: the event listener API
26
 
 * New feature: test shuffling
27
 
 * New feature: the XML report format is closer to junitreport and can
28
 
   be parsed by Hudson now.
29
 
 * New feature: when a test runs under Visual Studio, its failures are
30
 
   integrated in the IDE.
31
 
 * New feature: /MD(d) versions of VC++ projects.
32
 
 * New feature: elapsed time for the tests is printed by default.
33
 
 * New feature: comes with a TR1 tuple implementation such that Boost
34
 
   is no longer needed for Combine().
35
 
 * New feature: EXPECT_DEATH_IF_SUPPORTED macro and friends.
36
 
 * New feature: the Xcode project can now produce static gtest
37
 
   libraries in addition to a framework.
38
 
 * Compatibility fixes for Solaris, Cygwin, minGW, Windows Mobile,
39
 
   Symbian, gcc, and C++Builder.
40
 
 * Bug fixes and implementation clean-ups.
41
 
 
42
 
Changes for 1.3.0:
43
 
 
44
 
 * New feature: death tests on Windows, Cygwin, and Mac.
45
 
 * New feature: ability to use Google Test assertions in other testing
46
 
   frameworks.
47
 
 * New feature: ability to run disabled test via
48
 
   --gtest_also_run_disabled_tests.
49
 
 * New feature: the --help flag for printing the usage.
50
 
 * New feature: access to Google Test flag values in user code.
51
 
 * New feature: a script that packs Google Test into one .h and one
52
 
   .cc file for easy deployment.
53
 
 * New feature: support for distributing test functions to multiple
54
 
   machines (requires support from the test runner).
55
 
 * Bug fixes and implementation clean-ups.
56
 
 
57
 
Changes for 1.2.1:
58
 
 
59
 
 * Compatibility fixes for Linux IA-64 and IBM z/OS.
60
 
 * Added support for using Boost and other TR1 implementations.
61
 
 * Changes to the build scripts to support upcoming release of Google C++
62
 
   Mocking Framework.
63
 
 * Added Makefile to the distribution package.
64
 
 * Improved build instructions in README.
65
 
 
66
 
Changes for 1.2.0:
67
 
 
68
 
 * New feature: value-parameterized tests.
69
 
 * New feature: the ASSERT/EXPECT_(NON)FATAL_FAILURE(_ON_ALL_THREADS)
70
 
   macros.
71
 
 * Changed the XML report format to match JUnit/Ant's.
72
 
 * Added tests to the Xcode project.
73
 
 * Added scons/SConscript for building with SCons.
74
 
 * Added src/gtest-all.cc for building Google Test from a single file.
75
 
 * Fixed compatibility with Solaris and z/OS.
76
 
 * Enabled running Python tests on systems with python 2.3 installed,
77
 
   e.g. Mac OS X 10.4.
78
 
 * Bug fixes.
79
 
 
80
 
Changes for 1.1.0:
81
 
 
82
 
 * New feature: type-parameterized tests.
83
 
 * New feature: exception assertions.
84
 
 * New feature: printing elapsed time of tests.
85
 
 * Improved the robustness of death tests.
86
 
 * Added an Xcode project and samples.
87
 
 * Adjusted the output format on Windows to be understandable by Visual Studio.
88
 
 * Minor bug fixes.
89
 
 
90
 
Changes for 1.0.1:
91
 
 
92
 
 * Added project files for Visual Studio 7.1.
93
 
 * Fixed issues with compiling on Mac OS X.
94
 
 * Fixed issues with compiling on Cygwin.
95
 
 
96
 
Changes for 1.0.0:
97
 
 
98
 
 * Initial Open Source release of Google Test