8c39af455c
Now that all UITests either use gb_UITest_use_oneprocess or gb_UITest_avoid_oneprocess, it's possible to change the default to use oneprocess mode out of the box. Also clean up one test depend on this default. A later commit can clean up all other uses of gb_UITest_use_oneprocess, which is now redundant. Finally fix a typo in sw/UITest_sw_sidebar.mk. Change-Id: I6ae2ac5deb9c8ced9007c5b7da32743f9a2599ad Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158471 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
20 lines
560 B
Makefile
20 lines
560 B
Makefile
# 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,sw_sidebar))
|
|
|
|
$(eval $(call gb_UITest_add_modules,sw_sidebar,$(SRCDIR)/sw/qa/uitest,\
|
|
sidebar/ \
|
|
))
|
|
|
|
$(eval $(call gb_UITest_set_defs,sw_sidebar, \
|
|
TDOC="$(SRCDIR)/sw/qa/uitest/data" \
|
|
))
|
|
|
|
$(eval $(call gb_UITest_avoid_oneprocess,sw_sidebar))
|
|
|
|
# vim: set noet sw=4 ts=4:
|