diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-06-01 12:46:30 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-06-01 16:00:33 +0200 |
commit | 94dcb3b1a5b38b7b35cb75b068836d78134a6b7b (patch) | |
tree | adcec8c6e4c74ccb2b37ef51fe9bd67246a4e6bf /sc/UITest_calc_tests2.mk | |
parent | 403a8674e3ba46caaaa5734f62d57b3bf8dbd603 (diff) |
UITest_calc_tests: split this into 4 parts
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>
Diffstat (limited to 'sc/UITest_calc_tests2.mk')
-rw-r--r-- | sc/UITest_calc_tests2.mk | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/sc/UITest_calc_tests2.mk b/sc/UITest_calc_tests2.mk new file mode 100644 index 000000000000..509224823e94 --- /dev/null +++ b/sc/UITest_calc_tests2.mk @@ -0,0 +1,20 @@ +# -*- 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_tests2)) + +$(eval $(call gb_UITest_add_modules,calc_tests2,$(SRCDIR)/sc/qa/uitest,\ + calc_tests2/ \ +)) + +$(eval $(call gb_UITest_set_defs,calc_tests2, \ + TDOC="$(SRCDIR)/sc/qa/uitest/calc_tests/data" \ +)) + +# vim: set noet sw=4 ts=4: |