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 ...
|
dae8f246 | 20-Feb-2019 |
Enji Cooper <ngie@FreeBSD.org> |
Fix gtest test compilation and build more tests
My previous work to integrate these tests was incomplete/incorrect, because I misunderstood how the cmake macros worked.
This addresses items with th
Fix gtest test compilation and build more tests
My previous work to integrate these tests was incomplete/incorrect, because I misunderstood how the cmake macros worked.
This addresses items with the gtest tests, which in turn fixes test compilation and adds more tests which I had previously missed.
Due to an unknown issue with gtest_stress_test, I had to add pthread to LIBADD, even though I shouldn't have added it to that (it was failing to link -lpthread to libprivategtest.a). Add a XXX comment to note that something's awry there and deserves additional investigation.
show more ...
|