[Test] How to log output to both stdout in HRF and to a file in XML?

As asked on SO: http://stackoverflow.com/questions/26505229/how-to-log-boost-test-output-to-... I would like to enable logging of Boost.Test output to *both* the stdout/sterr and to a logfile. However, I would also like to have the stdout logging be in HumanReadableFormat and only the file output be in XML format. Generating a report file seems to be addressed [here][1]. ([official docs][2]) Choosing the format can be done in [various ways][3], but it seems one is stuck with either HRF or XML? ----------- Rationale: When running tests on or [Jenkins][4] server, the [xUnit plugin][5] [requires][6] the **log** XML output (as opposed to the *report* XML output -- `log_level` vs. `report_level`). However, the in-progress log output (in HRF) is highly valuable *while* the tests are running on the server, to detect hanging tests or to a quick manual check of where the tests currently are. So I want an in-progress HRF log for the tests and at the end I need an XML file containing the `<TestLog>...</TestLog>` output of Boost.Test (not the `<TestResult>` output). Do note that we run both unit as well as integration tests via Boost.Test, so some of them are quite long-running. [1]: http://stackoverflow.com/questions/3786639/what-is-the-better-way-to-generat... [2]: http://www.boost.org/doc/libs/1_44_0/libs/test/doc/html/utf/user-guide/test-... [3]: http://www.boost.org/doc/libs/1_44_0/libs/test/doc/html/utf/user-guide/runti... [4]: http://jenkins-ci.org/ [5]: https://wiki.jenkins-ci.org/display/JENKINS/xUnit+Plugin [6]: https://issues.jenkins-ci.org/browse/JENKINS-13686

On 22.10.2014 12:23, Martin Ba wrote:
As asked on SO: http://stackoverflow.com/questions/26505229/how-to-log-boost-test-output-to-...
I would like to enable logging of Boost.Test output to *both* the stdout/sterr and to a logfile.
However, I would also like to have the stdout logging be in HumanReadableFormat and only the file output be in XML format.
Generating a report file seems to be addressed [here][1]. ([official docs][2])
Choosing the format can be done in [various ways][3], but it seems one is stuck with either HRF or XML?
I managed to get this working.
See my answer on so: http://stackoverflow.com/a/26718189/321013
br,
Martin
+ + + code + + +
#pragma once
// Copyright (c) 2014
// This file is distributed under the
// Boost Software License - Version 1.0 - August 17th, 2003
// (See http://www.boost.org/LICENSE_1_0.txt )
#include
participants (2)
-
Martin B.
-
Martin Ba