5 Jun
2006
5 Jun
'06
7:36 p.m.
"Bruno MartÃnez"
On Fri, 02 Jun 2006 18:08:25 -0300, Gennadiy Rozental
wrote: So my question is: Are Boost test tools designed to be used in multiple threads?
Short answer - no. The test framework is reentrant, but not thread safe.
What exactly does this mean?
The usual. You could reenter framework functions (for example you could create and run test case dynamically from inside another test case). But you couldn't access test tools from different threads. Gennadiy