summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2013-11-28 17:28:15 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2013-11-28 18:03:56 +0100
commita7806c318e9aa87312107b775f695b3dfe483f34 (patch)
tree79121579ce53fd77394003432ff3b1ad3c314da8 /sw
parent639aa8e72639fd01e9004977f1cfaafc13b1e45f (diff)
SwModelTestBase: write csv output to stdout
This way a 2>/dev/null output still gives a csv, even if there were various other warnings in the meantime. Change-Id: I6ed3de4058c829e856286c7d484d6ed436c362a4
Diffstat (limited to 'sw')
-rw-r--r--sw/qa/extras/inc/swmodeltestbase.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/qa/extras/inc/swmodeltestbase.hxx b/sw/qa/extras/inc/swmodeltestbase.hxx
index ba64155ae001..a5a4ed78eadf 100644
--- a/sw/qa/extras/inc/swmodeltestbase.hxx
+++ b/sw/qa/extras/inc/swmodeltestbase.hxx
@@ -402,7 +402,7 @@ protected:
void header()
{
- std::cerr << "File tested,Execution Time (ms)" << std::endl;
+ std::cout << "File tested,Execution Time (ms)" << std::endl;
}
void load(const char* pDir, const char* pName)
@@ -410,7 +410,7 @@ protected:
if (mxComponent.is())
mxComponent->dispose();
// Output name early, so in the case of a hang, the name of the hanging input file is visible.
- std::cerr << pName << ",";
+ std::cout << pName << ",";
m_nStartTime = osl_getGlobalTimer();
mxComponent = loadFromDesktop(getURLFromSrc(pDir) + OUString::createFromAscii(pName), "com.sun.star.text.TextDocument");
if (mustCalcLayoutOf(pName))
@@ -452,7 +452,7 @@ protected:
void finish()
{
sal_uInt32 nEndTime = osl_getGlobalTimer();
- std::cerr << (nEndTime - m_nStartTime) << std::endl;
+ std::cout << (nEndTime - m_nStartTime) << std::endl;
if (mpXmlBuffer)
{
xmlBufferFree(mpXmlBuffer);