The biggest change is building the testsuite by default, however, this is
the common practice, and generally people opt-out of building tests by doing
-DBUILD_TESTING=OFF when they invoke cmake.
Details
nix develop cd services/tunnelbroker rm -rf build && mkdir build && cd build && cmake .. && make -j ctest # should fail as AWS needs to be configured, but run # without tests nix develop cd services/tunnelbroker rm -rf build && mkdir build && cd build && cmake .. -DBUILD_TESTING=OFF && make -j ctest # should fail to find tests
Diff Detail
- Repository
- rCOMM Comm
- Lint
No Lint Coverage - Unit
No Test Coverage
Event Timeline
In this case:
nix develop cd services/tunnelbroker rm -rf build && mkdir build && cd build && cmake .. && make -j ctest # should fail as AWS needs to be configured, but run
the tests aren't running (and failing). Instead, I'm getting the following (which I'd expect to get--and do--with -DBUILD_TESTING=OFF):
the tests aren't running (and failing).
this was my bad, forgot to flip the default to ON for this service
For other tooltip actions we don't need to manually set this style. Can we use the mechanism we already have, or are there any reasons for not doing so?