diff options
author | Michael Stahl <michael.stahl@allotropia.de> | 2021-08-24 13:38:43 +0200 |
---|---|---|
committer | Michael Stahl <michael.stahl@allotropia.de> | 2021-08-24 18:58:32 +0200 |
commit | ba8fe774a1cfc1cc5be05ecc5175a7d020e5bd7a (patch) | |
tree | 89765e80028f9bb5d84be4552cbe431f92ee6d52 /test/source | |
parent | 84d87ae75f5d70bfcaa3e2b124c74a8f733980a3 (diff) |
test: capture stderr of odfvalidator too
It will be used when https://github.com/tdf/odftoolkit/pull/121 is
merged.
Change-Id: I78d2b52ffc05fdd446ea7b673c2a7ebab26efc2a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120943
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
Diffstat (limited to 'test/source')
-rw-r--r-- | test/source/bootstrapfixture.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/source/bootstrapfixture.cxx b/test/source/bootstrapfixture.cxx index 78bdba431c77..4d933a3fc5d2 100644 --- a/test/source/bootstrapfixture.cxx +++ b/test/source/bootstrapfixture.cxx @@ -189,7 +189,7 @@ void test::BootstrapFixture::validate(const OUString& rPath, test::ValidationFor utl::TempFile aOutput; aOutput.EnableKillingFile(); OUString aOutputFile = aOutput.GetFileName(); - OUString aCommand = aValidator + " " + rPath + " > " + aOutputFile; + OUString aCommand = aValidator + " " + rPath + " > " + aOutputFile + " 2>&1"; #if !defined _WIN32 // For now, this is only needed by some Linux ASan builds, so keep it simply and disable it on |