3ec17b2309
Execution time changes: - from 1m27,535s to 0m55,724s - from 5m40,926s to 4m46,884s - from 1m54,886s to 1m31,400s - from 3m30,592s to 2m20,833s for me. Also add a simple script that lists what's remaining to be converted. Change-Id: I274f5a11a0f606964bdad5d5e5254b65b09fe497 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149739 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
20 lines
503 B
Bash
Executable file
20 lines
503 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# 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/.
|
|
#
|
|
# Run this from the source root dir to count the number of non-oneprocess ui tests
|
|
|
|
for i in */UITest_*.mk
|
|
do
|
|
if grep -q oneprocess $i; then
|
|
continue
|
|
fi
|
|
|
|
echo $i
|
|
done
|
|
|
|
# vim:set shiftwidth=4 softtabstop=4 expandtab:
|