diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-10-09 10:24:24 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-10-09 12:44:22 +0200 |
commit | dd48fc2f3e5d48695a55aa3df175b9247ddf34e0 (patch) | |
tree | e07c0e45dac8fad926a91c9cfbbaab4d4df0ec05 /test | |
parent | 2f3d8e05a3ed4421fc987c3d096cadb636056104 (diff) |
log output filename
Change-Id: Ib6c0045edb5d4a5d86c40f354dc99ab2fb693ca4
Reviewed-on: https://gerrit.libreoffice.org/80534
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/source/screenshot_test.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/source/screenshot_test.cxx b/test/source/screenshot_test.cxx index e849bae672ce..42dd194d6fe1 100644 --- a/test/source/screenshot_test.cxx +++ b/test/source/screenshot_test.cxx @@ -89,6 +89,7 @@ void ScreenshotTest::implSaveScreenshot(const BitmapEx& rScreenshot, const OStri SvFileStream aNew(pngUrl, StreamMode::WRITE | StreamMode::TRUNC); CPPUNIT_ASSERT_MESSAGE(OUStringToOString("Failed to open <" + pngUrl + ">: " + OUString::number(sal_uInt32(aNew.GetErrorCode())), RTL_TEXTENCODING_UTF8).getStr(), aNew.IsOpen()); + std::cout << "saving " << pngUrl << ":\n"; vcl::PNGWriter aPNGWriter(rScreenshot); aPNGWriter.Write(aNew); } |