$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 Rozental (rogeeff_at_[hidden])
Date: 2012-10-29 13:33:17
Thorsten Ottosen <thorsten.ottosen <at> dezide.com> writes:
> That seems like a lot of nice improvements. However, there is one
> thing that could save a lot of time for us, and that's the ability
> to run a specific test as the first one.
>
> Is that hard to add?
You can always run that test by name and do a second run which skips
that test case:
test.exe --run=my/special/test
test.exe --run=!my/special/test
More generically you can attach label to some specific test units and
run them exclusively.
Direct support within single test tree pass of priorities may not be
trivial.
Gennadiy