From 75de88f80d75c57322559dde91588ecea6274894 Mon Sep 17 00:00:00 2001 From: maroy Date: Sat, 24 Jul 2004 08:07:21 +0000 Subject: [PATCH] made test XML output non-standalone --- livesupport/modules/core/src/TestRunner.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/livesupport/modules/core/src/TestRunner.cxx b/livesupport/modules/core/src/TestRunner.cxx index 2a3cba545..9f230a42b 100644 --- a/livesupport/modules/core/src/TestRunner.cxx +++ b/livesupport/modules/core/src/TestRunner.cxx @@ -22,7 +22,7 @@ Author : $Author: maroy $ - Version : $Revision: 1.2 $ + Version : $Revision: 1.3 $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/core/src/TestRunner.cxx,v $ ------------------------------------------------------------------------------*/ @@ -172,6 +172,7 @@ main( int argc, // also generate an XML document as an output std::ofstream xmlOutFile(xmlOutFileName->c_str()); CPPUNIT_NS::XmlOutputter xmlOutputter(&result, xmlOutFile, encoding); + xmlOutputter.setStandalone(false); if (xsltFileName) { xmlOutputter.setStyleSheet(*xsltFileName); }