7485e13b6a
...for CPPUNIT_TEST_NAME=testReferToTheme::TestBody introduced in
f36767fde8
"PPTX export: handle theme colors from
the doc model for shape text",
> /home/sbergman/lo/core/test/source/bootstrapfixture.cxx:248:(anonymous namespace)::testReferToTheme::TestBody
> equality assertion failed
> - Expected: 0
> - Actual : 256
> - failed to execute: sh /home/sbergman/lo/core/bin/officeotron.sh /home/sbergman/lo/tmp/libtest_oox_export.so1a9v6q.tmp > /home/sbergman/lo/tmp/_anonymous_namespace___testReferToTheme__TestBody_1a9v6u.tmp 2>&1
> Exception in thread "main" java.lang.UnsatisfiedLinkError: /usr/lib/jvm/java-11-openjdk-11.0.13.0.8-2.fc35.x86_64/lib/libsystemconf.so: /home/sbergman/lo/core/instdir/program/libnspr4.so: undefined symbol: __asan_option_detect_stack_use_after_return
Change-Id: If241bc3aa727c56ae7fa69744957690c722fbb1e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/126281
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
50 lines
1.4 KiB
Makefile
50 lines
1.4 KiB
Makefile
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
|
#*************************************************************************
|
|
#
|
|
# This file is part of the LibreOffice project.
|
|
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
#
|
|
#*************************************************************************
|
|
|
|
$(eval $(call gb_CppunitTest_CppunitTest,oox_export))
|
|
|
|
$(eval $(call gb_CppunitTest_use_externals,oox_export,\
|
|
boost_headers \
|
|
libxml2 \
|
|
))
|
|
|
|
$(eval $(call gb_CppunitTest_add_exception_objects,oox_export, \
|
|
oox/qa/unit/export \
|
|
))
|
|
|
|
$(eval $(call gb_CppunitTest_use_libraries,oox_export, \
|
|
comphelper \
|
|
cppu \
|
|
oox \
|
|
sal \
|
|
test \
|
|
unotest \
|
|
utl \
|
|
))
|
|
|
|
$(eval $(call gb_CppunitTest_use_sdk_api,oox_export))
|
|
|
|
$(eval $(call gb_CppunitTest_use_ure,oox_export))
|
|
$(eval $(call gb_CppunitTest_use_vcl,oox_export))
|
|
|
|
$(eval $(call gb_CppunitTest_use_rdb,oox_export,services))
|
|
|
|
$(eval $(call gb_CppunitTest_use_custom_headers,oox_export,\
|
|
officecfg/registry \
|
|
))
|
|
|
|
$(eval $(call gb_CppunitTest_use_configuration,oox_export))
|
|
|
|
$(eval $(call gb_CppunitTest_add_arguments,oox_export, \
|
|
-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:
|