322044e128
These 11 suites depended on the UITest default to not use oneprocess mode. Explicitly avoid that mode in these suites, because they currently fail that way. This allows changing the default in the future, so new suites automatically benefit from the oneprocess mode (it runs faster, somewhat similar to cppunit). Change-Id: I8c493ca63310815c1364bb6182c3285a9c7fbd63 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158128 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
22 lines
635 B
Makefile
22 lines
635 B
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_UITest_UITest,calc_tests8))
|
|
|
|
$(eval $(call gb_UITest_add_modules,calc_tests8,$(SRCDIR)/sc/qa/uitest,\
|
|
calc_tests8/ \
|
|
))
|
|
|
|
$(eval $(call gb_UITest_set_defs,calc_tests8, \
|
|
TDOC="$(SRCDIR)/sc/qa/uitest/data" \
|
|
))
|
|
|
|
$(eval $(call gb_UITest_avoid_oneprocess,calc_tests8))
|
|
|
|
# vim: set noet sw=4 ts=4:
|