Is there a Boost test suite?

I am working on creating a Boost platform for an unsupported toolchain. Obviously, we would like to check that the compiler is building everything in order, so we know how successful the porting is. However, it is not immediately clear whether Boost has such a set of tests, whether Google fails well (or I fail at Google ...), since I can only get the results in the Boost Test test library. Does anyone know about this Boost test suite?

GCC has some info here ( http://gcc.gnu.org/testing/testing-boost.html ), but they mention that their regression kit takes about 5 minutes to run on a Pentium 3 - which doesn't offer me to was especially comprehensive.

+4
source share
2 answers

Are you looking for a Boost regression test suite ?

+7
source

The easiest way is to go to the "status" directory and run bjam there. If you use GCC and your target system has no problems with threads or unicode, you should not see any crashes at all.

+3
source

Source: https://habr.com/ru/post/1286618/


All Articles