#
e9ac4169 |
| 15-Jul-2024 |
Warner Losh <imp@FreeBSD.org> |
Remove residual blank line at start of Makefile
This is a residual of the $FreeBSD$ removal.
MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
|
Revision tags: release/14.1.0, release/13.3.0, release/14.0.0 |
|
#
d0b2dbfa |
| 16-Aug-2023 |
Warner Losh <imp@FreeBSD.org> |
Remove $FreeBSD$: one-line sh pattern
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
|
Revision tags: release/13.2.0, release/12.4.0, release/13.1.0, release/12.3.0, release/13.0.0, release/12.2.0 |
|
#
4fa4bd63 |
| 19-Oct-2020 |
Alex Richardson <arichardson@FreeBSD.org> |
Enable SUBDIR_PARALLEL for lib/googletest
This saves a few seconds in a parallel build since we can build the gtest_main and gmock subdirectories in parallel.
Reviewed By: ngie Differential Revisio
Enable SUBDIR_PARALLEL for lib/googletest
This saves a few seconds in a parallel build since we can build the gtest_main and gmock subdirectories in parallel.
Reviewed By: ngie Differential Revision: https://reviews.freebsd.org/D26760
show more ...
|
Revision tags: release/11.4.0, release/12.1.0, release/11.3.0 |
|
#
2aaf9152 |
| 18-Mar-2019 |
Alan Somers <asomers@FreeBSD.org> |
MFHead@r345275
|
#
5193fcde |
| 15-Mar-2019 |
Enji Cooper <ngie@FreeBSD.org> |
Initial googlemock/googletest integration into the build/FreeBSD test suite
This initial integration takes googlemock/googletest release 1.8.1, integrates the library, tests, and sample unit tests i
Initial googlemock/googletest integration into the build/FreeBSD test suite
This initial integration takes googlemock/googletest release 1.8.1, integrates the library, tests, and sample unit tests into the build.
googlemock/googletest's inclusion is optionally available via `MK_GOOGLETEST`. `MK_GOOGLETEST` is dependent on `MK_TESTS` and is enabled by default when built with a C++11 capable toolchain.
Google tests can be specified via the `GTESTS` variable, which, in comparison with the other test drivers, is more simplified/streamlined, as Googletest only supports C++ tests; not raw C or shell tests (C tests can be written in C++ using the standard embedding methods).
No dependent libraries are assumed for the tests. One must specify `gmock`, `gmock_main`, `gtest`, or `gtest_main`, via `LIBADD` for the program.
More information about googlemock and googletest can be found on the Googletest [project page](https://github.com/google/googletest), and the [GoogleMock](https://github.com/google/googletest/blob/v1.8.x/googlemock/docs/Documentation.md) and [GoogleTest](https://github.com/google/googletest/tree/v1.8.x/googletest/docs) docs.
These tests are originally integrated into the build as plain driver tests, but will be natively integrated into Kyua in a later version.
Known issues/Errata: * [WhenDynamicCastToTest.AmbiguousCast fails on FreeBSD](https://github.com/google/googletest/issues/2172)
Reviewed by: asomers Approved by: emaste (mentor) MFC after: 2 months Differential Revision: https://reviews.freebsd.org/D19551
show more ...
|
#
04773d6d |
| 20-Feb-2019 |
Enji Cooper <ngie@FreeBSD.org> |
Add glue Makefile for tests under lib/googletest/...
|
#
1ab32159 |
| 20-Feb-2019 |
Enji Cooper <ngie@FreeBSD.org> |
Unconditionally build/install libg{mock,test}_main
They are supporting libraries and as such, will need to be built/installed when MK_TESTS == no during buildworld, i.e., the "make libraries" phase.
Unconditionally build/install libg{mock,test}_main
They are supporting libraries and as such, will need to be built/installed when MK_TESTS == no during buildworld, i.e., the "make libraries" phase.
Otherwise, dependent components cannot rely on the libraries, like `cddl/usr.sbin/zfsd/tests`.
show more ...
|
#
f3c5273d |
| 13-Feb-2019 |
Enji Cooper <ngie@FreeBSD.org> |
Merge build glue for libraries and tests done on github
I need to doublecheck my work vs the port, but I believe that this covers the initial integration of all upstream tests.
Ref: https://github.
Merge build glue for libraries and tests done on github
I need to doublecheck my work vs the port, but I believe that this covers the initial integration of all upstream tests.
Ref: https://github.com/ngie-eign/freebsd/tree/googletest-integration
show more ...
|