|
Boost Testing : |
Subject: Re: [Boost-testing] Few questions about tesing environment
From: Beman Dawes (bdawes_at_[hidden])
Date: 2011-07-13 18:07:55
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.
--Beman