Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
--random

This argument controls whether or not the test runner will execute tests in a random order. This argument can also provide a seed for the random number generator used to run tests in a random order.

Value

Meaning

0 (default)

Run tests in registration order.

1

Run tests in a random order, using the current time as the seed.

n

Run tests in a random order, using n as the seed.

Environment variable: BOOST_TEST_RANDOM


PrevUpHomeNext