diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2022-04-02 10:48:11 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2022-04-02 14:23:51 +0200 |
commit | 12f94913307450aad0e48f6ce06aac9f74807e1a (patch) | |
tree | f8648a3cec28f203b3ba3810cd7163bdfe96e2de | |
parent | 1927b51993fb68907a75765676179b08ab195196 (diff) |
CppunitTest_sc_sparkline_test also needs the ASan hack
...from e854abe076155fc085b56549ced50b3ee9a095d2 "Avoid external processes
picking up instdir/program/libnspr4.so", to avoid
> Test name: SparklineImportExportTest::testSparklines
> equality assertion failed
> - Expected: 0
> - Actual : 32512
> - failed to execute: sh .../bin/officeotron.sh .../tmp/SparklineImportExportTest__testSparklines_230wbj.tmp > .../tmp/SparklineImportExportTest__testSparklines_230wbn.tmp 2>&1
> java: symbol lookup error: .../instdir/program/libnspr4.so: undefined symbol: __asan_init
Change-Id: Icb710014278c0e38ec60a075d145b0174404ef2c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132452
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
-rw-r--r-- | sc/CppunitTest_sc_sparkline_test.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sc/CppunitTest_sc_sparkline_test.mk b/sc/CppunitTest_sc_sparkline_test.mk index e416d3b4bf3d..c961d466f857 100644 --- a/sc/CppunitTest_sc_sparkline_test.mk +++ b/sc/CppunitTest_sc_sparkline_test.mk @@ -62,4 +62,8 @@ $(eval $(call gb_CppunitTest_use_components,sc_sparkline_test)) $(eval $(call gb_CppunitTest_use_configuration,sc_sparkline_test)) +$(eval $(call gb_CppunitTest_add_arguments,sc_sparkline_test, \ + -env:arg-env=$(gb_Helper_LIBRARY_PATH_VAR)"$$$${$(gb_Helper_LIBRARY_PATH_VAR)+=$$$$$(gb_Helper_LIBRARY_PATH_VAR)}" \ +)) + # vim: set noet sw=4 ts=4: |