$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [boost] Boost.Test updates in trunk: need for (mini) review?
From: Gennadiy Rozenal (rogeeff_at_[hidden])
Date: 2012-11-04 04:48:49
Thorsten Ottosen <thorsten.ottosen <at> dezide.com> writes:
> Ok. Maybe I should define better what I have found a need for
> (it would save tons of time, FWIW). When I said "test" I meant
> a single test case, like defined by BOOST_AUTO_TEST_CASE.
The answer is the same. You get what you need by running test module
twice: first run you include only the test case you are interested in
and second run excludes that same test case:
test.exe --run=testcase1
test.exe --run=!testcase1
Gennadiy