./devel/googletest, Googles C++ testing framework

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 1.16.0, Package name: googletest-1.16.0, Maintainer: reed

The googletest package provides Google's C++ test writing framework.
It is based on the xUnit architecture and works for a variety of
platforms (Linux, Mac OS X, Windows, Cygwin, Windows CE, and
Symbian). It provides various options for running the tests, a rich
set of assertions, automatic test discovery, and XML test report
generation. It supports type- and value-parameterized tests, death
tests, fatal and non-fatal failures, and user-defined assertions.


Required to build:
[pkgtools/cwrappers]

Master sites:

Filesize: 855.708 KB

Version history: (Expand)


CVS history: (Expand)


   2025-02-09 15:24:26 by Thomas Klausner | Files touched by this commit (2) | Package updated
Log message:
googletest: update to 1.16.0.

C++ Language Support

    GoogleTest requires at least C++14 and follows Google's
    Foundational C++ Support Policy. See this table for a list of
    currently supported versions compilers, platforms, and build
    tools.
    The 1.16.x branch will be the last to support C++14. Future
    development will require at least C++17.

Notable Changes

    Bazel BUILD files now reference repositories by their canonical
    names from the Bazel Central Registry (cee1ba1). Users still
    using the old WORKSPACE system may need to use repo_mapping on
    repositories that still use the old names.
    Testsuite properties as are now exported as XML elements, not
    attributes (b4aae50).
   2024-08-02 09:43:12 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
googletest: updated to 1.15.2

v1.15.2

Bzlmod is now officially supported (previously it was supported by the \ 
community). Note that it may take several days after the release for it to \ 
become available in the Bazel Central Registry.
Many bug fixes
   2024-07-19 08:51:21 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
googletest: updated to 1.15.0

v1.15.0

Notable Changes

Bzlmod is now officially supported (previously it was supported by the \ 
community). Note that it may take several days after the release for it to \ 
become available in the Bazel Central Registry.
Many bug fixes
   2023-11-16 11:11:18 by Nia Alarie | Files touched by this commit (2)
Log message:
googletest: Add missing header for raise(3), needed on NetBSD/aarch64
   2023-08-05 09:13:17 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
googletest: updated to 1.14.0

v1.14.0
Many bug fixes
   2023-07-20 11:46:34 by Nia Alarie | Files touched by this commit (14)
Log message:
*: Convert some remaining usage of GCC_REQD.
   2023-07-18 16:11:18 by Nia Alarie | Files touched by this commit (35)
Log message:
devel: Adapt packages to use USE_(CC|CXX)_FEATURES
   2023-03-03 10:58:34 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
googletest: updated to 1.13.0

v1.13.0

C++ Language Support

GoogleTest now requires at least C++14 and follows Google's Foundational C++ \ 
Support Policy. See this table for a list of currently supported versions \ 
compilers, platforms, and build tools.

Notable Changes

Floating point prints full precision by default to aid in debugging (9c33214)
GTEST_FAIL_AT now terminates the test (like ASSERT_*), rather than failing and \ 
continuing (like EXPECT_*) (6f14952)
Added testing::SrcDir(), which returns the configured directory for test data \ 
files (912db74)