diff options
author | Xisco Fauli <xiscofauli@libreoffice.org> | 2023-10-30 12:25:17 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2023-11-06 09:30:56 +0100 |
commit | c45b45acef6f6657b1d95056830fee7c5f7d29c4 (patch) | |
tree | ba2f0f292a3deae1e3cad4b6a3d88857c783df38 /bin | |
parent | 07b602edbcffe50dc8a81a8a1d79a2a99bbc3e7d (diff) |
bin: remove no longer needed script
After 8c39af455c4dee53c6f3c918b0497f80a4fb0f21
"uitest oneprocess mode: default to this and clean up one test"
Change-Id: I3da187055cc8ac239d6a4592f3050440630e051c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158654
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/count-slow-uitests | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/bin/count-slow-uitests b/bin/count-slow-uitests deleted file mode 100755 index 8895c2013667..000000000000 --- a/bin/count-slow-uitests +++ /dev/null @@ -1,20 +0,0 @@ -#!/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: |