|
Boost Testing : |
From: Douglas Gregor (doug.gregor_at_[hidden])
Date: 2005-12-12 10:19:38
On Dec 12, 2005, at 10:01 AM, Gennadiy Rozental wrote:
>
>> With the BBv1 testing infrastructure, I'd like to be able to build
>> a test
>> executable and then run it several times with different sets of
>> parameters
>
> You could do thjis with Boost.Test parameterized test cases if you are
> willing to change a test design a bit.
Unfortunately, changing the C++ code itself won't help, because I'm
actually running an external program several times, e.g.,
mpirun -np 2 all-gather-test
mpirun -np 7 all-gather-test
mpirun -np 17 all-gather-test
I could wrap up the calls to mpirun in another test program, but
that's getting *really* ugly.
Doug