[Libreoffice-commits] core.git: test/source

Miklos Vajna (via logerrit) logerrit at kemper.freedesktop.org
Tue Mar 3 12:44:32 UTC 2020


 test/source/bootstrapfixture.cxx |    1 +
 1 file changed, 1 insertion(+)

New commits:
commit b3c18cdc07507bf4bc4bac14e792b1eb2294399a
Author:     Miklos Vajna <vmiklos at collabora.com>
AuthorDate: Tue Mar 3 12:02:08 2020 +0100
Commit:     Miklos Vajna <vmiklos at collabora.com>
CommitDate: Tue Mar 3 13:43:58 2020 +0100

    test: log the validator cmdline
    
    The validator cmdline is fairly nontrivial, log it so that in case it
    fails, one can invoke it manually without having to hunt down the string
    in a debugger.
    
    Change-Id: Id18c6d67f1b3b78da31e8be8c60f703623b80309
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89875
    Reviewed-by: Miklos Vajna <vmiklos at collabora.com>
    Tested-by: Jenkins

diff --git a/test/source/bootstrapfixture.cxx b/test/source/bootstrapfixture.cxx
index 771c1fe482d9..4d6b54a8f879 100644
--- a/test/source/bootstrapfixture.cxx
+++ b/test/source/bootstrapfixture.cxx
@@ -187,6 +187,7 @@ void test::BootstrapFixture::validate(const OUString& rPath, test::ValidationFor
     OUString aOutputFile = aOutput.GetFileName();
     OUString aCommand = aValidator + " " + rPath + " > " + aOutputFile;
 
+    SAL_INFO("test", "BootstrapFixture::validate: executing '" << aCommand << "'");
     int returnValue = system(OUStringToOString(aCommand, RTL_TEXTENCODING_UTF8).getStr());
 
     OString aContentString = loadFile(aOutput.GetURL());


More information about the Libreoffice-commits mailing list