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
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
Diff Detail
- Repository
- rCOMM Comm
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
Comment Actions
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):
Comment Actions
the tests aren't running (and failing).
this was my bad, forgot to flip the default to ON for this service