diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-08-24 17:03:06 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-08-24 17:03:06 +0200 |
commit | a4ef3f4eb1ded7d9737083cce6d8079c2228fbb6 (patch) | |
tree | 7d87927c0b547670dddb3a14586b00ef2146e238 /unotest | |
parent | 82fb80ec22e58d27b5b454da9dc095cef2fc3025 (diff) |
Clean up output
Change-Id: I4fbcd03e4af82ba8e3697651ddce92ba0ba450a6
Diffstat (limited to 'unotest')
-rw-r--r-- | unotest/source/cpp/filters-test.cxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/unotest/source/cpp/filters-test.cxx b/unotest/source/cpp/filters-test.cxx index d088a97d1594..2bd61f268f68 100644 --- a/unotest/source/cpp/filters-test.cxx +++ b/unotest/source/cpp/filters-test.cxx @@ -122,7 +122,7 @@ void FiltersTest::recursiveScan(filterStatus nExpected, //output name early, so in the case of a hang, the name of //the hanging input file is visible - fprintf(stderr, "%s,", aRes.getStr()); + fprintf(stderr, "Testing %s:\n", aRes.getStr()); sal_uInt32 nStartTime = osl_getGlobalTimer(); bool bRes; if (!bExport) @@ -136,8 +136,8 @@ void FiltersTest::recursiveScan(filterStatus nExpected, if (bEncrypted) CPPUNIT_ASSERT_EQUAL(osl::FileBase::E_None, osl::File::remove(sTmpFile)); - fprintf(stderr, "%s,%" SAL_PRIuUINT32"\n", - bRes?"Pass":"Fail",nEndTime-nStartTime); + fprintf(stderr, "Tested %s: %s (%" SAL_PRIuUINT32 "ms)\n", + aRes.getStr(), bRes?"Pass":"Fail", nEndTime-nStartTime); if (nExpected == test::indeterminate) continue; filterStatus nResult = bRes ? test::pass : test::fail; @@ -151,7 +151,6 @@ void FiltersTest::testDir(const OUString &rFilter, SfxFilterFlags nFilterFlags, SotClipboardFormatId nClipboardID, unsigned int nFilterVersion, bool bExport) { - fprintf(stderr, "File tested,Test Result,Execution tools::Time (ms)\n"); recursiveScan(test::pass, rFilter, rURL + "pass", rUserData, nFilterFlags, nClipboardID, nFilterVersion, bExport); |