94dcb3b1a5
Before: make -sr UITest_calc_tests -> 10m48.934s After: make -sr -j4 UITest_calc_tests UITest_calc_tests2 UITest_calc_tests3 UITest_calc_tests4 -> 5m40.113s As a start just split based on the number of .py files in the directories, one could improve this further by making them even more equal based on number of lines or something. Change-Id: I7a98a29e5d18a7600575956a7d8a0ec81e804269 Reviewed-on: https://gerrit.libreoffice.org/55174 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
20 lines
590 B
Makefile
20 lines
590 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_tests4))
|
|
|
|
$(eval $(call gb_UITest_add_modules,calc_tests4,$(SRCDIR)/sc/qa/uitest,\
|
|
calc_tests4/ \
|
|
))
|
|
|
|
$(eval $(call gb_UITest_set_defs,calc_tests4, \
|
|
TDOC="$(SRCDIR)/sc/qa/uitest/calc_tests/data" \
|
|
))
|
|
|
|
# vim: set noet sw=4 ts=4:
|