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 ...
|
c1bcc48b | 21-Feb-2019 |
Enji Cooper <ngie@FreeBSD.org> |
Use gmock/gtest headers when PRIVATELIB is defined
The move to /usr/include/private prefixed paths seems to require a bit more effort in order to compile programs.
Install the headers to /usr/inclu
Use gmock/gtest headers when PRIVATELIB is defined
The move to /usr/include/private prefixed paths seems to require a bit more effort in order to compile programs.
Install the headers to /usr/include/private/g{mock,test}/... and automatically include /usr/include/private in GTESTS_CXXFLAGS to make compilation seamless. I will work on the more global problem later with @bdrewery.
show more ...
|
83301881 | 20-Feb-2019 |
Enji Cooper <ngie@FreeBSD.org> |
Correct gmock/gtest expectations w.r.t. C++11/RTTI
Long story short, some of the tests were failing because they expected either dynamic_cast or RTTI to be functional and it wasn't.
Move all common
Correct gmock/gtest expectations w.r.t. C++11/RTTI
Long story short, some of the tests were failing because they expected either dynamic_cast or RTTI to be functional and it wasn't.
Move all common CXXFLAGS out to googletest.test.inc.mk and reference it from googletest.test.mk and .../googletest/Makefile.inc
show more ...
|
140b3639 | 20-Feb-2019 |
Enji Cooper <ngie@FreeBSD.org> |
Apply lessons learned in r344345 on gtest_main tests
The key difference is that some of the programs were previously being compiled and installed as tests, which is incorrect. Treat them like helper
Apply lessons learned in r344345 on gtest_main tests
The key difference is that some of the programs were previously being compiled and installed as tests, which is incorrect. Treat them like helpers instead.
show more ...
|