@rrahn commented on Mon Mar 30 2020
Description
In many systems to install an application multiple steps are involved:
configure / cmake
make
make check
make install
First the application is configured (in our case using cmake), then the binary is built using make and then the extra target check
is called to check if the built binary is correct.
In our case it should run CLI tests or a subset of them defined by the application developer.
Acceptance Criteria
Tasks
Definition of Done
@marehr commented on Thu May 07 2020
Core-Meeting:
This would only execute a subset of tests to test basic functionality. For a complete unit test; build all tests.