Running Boost built in tests

Is the ./b2 statusright way to run the tests that come with Boost? Check libraries themselves?

A related question. As a rule, is it good to run a set of library tests or trust designers before embarking on a deployment?

+4
source share
1 answer

You can run all Boost module tests with:

cd <boost-root>/status
b2

Or you can also:

cd <boost-root>/libs/<a-library>/test
b2

. . , , . , , .

+4

All Articles