|
Boost Testing : |
Subject: Re: [Boost-testing] Few questions about tesing environment
From: Artyom Beilis (artyomtnk_at_[hidden])
Date: 2011-07-14 03:37:16
----- Original Message ----
> From: Beman Dawes <bdawes_at_[hidden]>
> On Wed, Jul 13, 2011 at 8:52 AM, Artyom Beilis <artyomtnk_at_[hidden]> wrote:
>
> > 2. Is there any way to see the output of tests that succeed?
> >
> > Sometimes tests can depend on OS configuration and I'd like to
> > see their output to know how good is their cover.
>
> In the test Jamfile.v2, supply the <test-info>always_show_run_output
> property. Here is how it is done for one of the config tests:
>
> [ run config_info.cpp : : : <test-info>always_show_run_output
> <threading>multi : config_info_threaded ]
>
> If you look at the config_info_threaded results, even if they are
> "Pass" there will be a link to the output.
>
This is really good, I've added a special test that
would print me all required configuration so I'll see
what happens with the library
That would be enough
Artyom