summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/count-slow-uitests20
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: