diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2022-03-30 21:28:08 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2022-03-31 14:51:10 +0200 |
commit | 6bf6966c5e40ead076ec38464f777149010a3eb2 (patch) | |
tree | 0d4294a0e719d32d3a8e35e1f775d338fa3ca2fc | |
parent | bccbdce07cfa74f5cabf97c5fb11405991fffdfe (diff) |
Missing test dependency
> [_RUN_____] testPDFAddVisibleSignatureLastPage::TestBody
[...]
> warn:sal.osl:2861871:2861910:sal/osl/unx/process.cxx:343: ChildStatusProc : starting '.../instdir/program/xpdfimport' failed
> warn:sal.osl:2861871:2861910:sal/osl/unx/process.cxx:344: Failed to launch child process, child reports ENOENT
> warn:sdext.pdfimport:2861871:2861871:sdext/source/pdfimport/wrapper/wrapper.cxx:1090: executeProcess of file:///.../instdir/program/xpdfimport failed with 4
when building CppunitTest_vcl_filter_ipdf from scratch
Change-Id: Id155ee09eb90b4bfb0416ffa458554a126db9747
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132334
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
-rw-r--r-- | vcl/CppunitTest_vcl_filter_ipdf.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/vcl/CppunitTest_vcl_filter_ipdf.mk b/vcl/CppunitTest_vcl_filter_ipdf.mk index 403836ac781a..05311cc0381c 100644 --- a/vcl/CppunitTest_vcl_filter_ipdf.mk +++ b/vcl/CppunitTest_vcl_filter_ipdf.mk @@ -46,4 +46,8 @@ $(eval $(call gb_CppunitTest_use_custom_headers,vcl_filter_ipdf,\ $(eval $(call gb_CppunitTest_use_configuration,vcl_filter_ipdf)) +ifeq ($(ENABLE_POPPLER),TRUE) +$(eval $(call gb_CppunitTest_use_executable,vcl_filter_ipdf,xpdfimport)) +endif + # vim: set noet sw=4 ts=4: |