Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 548 Bytes

File metadata and controls

29 lines (20 loc) · 548 Bytes

Build & Test Tips

All commands below must be run inside the build directory
(e.g., mkdir build && cd build && cmake ..).

Build

cmake --build .

This compiles the project

Test

ctest --verbose

Runs all tests with detailed output.

Test Partuicular Unit Test

This example runs tests with only [Respawn] tag. Tags you can see in test files (.cpp). If you see more than 1 unit test failed, please select one to work on and iterate with the following command.

cd build
./unit/unit [Respawn]