summaryrefslogtreecommitdiff
path: root/uitest/test_main.py
diff options
context:
space:
mode:
Diffstat (limited to 'uitest/test_main.py')
-rw-r--r--uitest/test_main.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/uitest/test_main.py b/uitest/test_main.py
index c75533685174..97afeb43f60c 100644
--- a/uitest/test_main.py
+++ b/uitest/test_main.py
@@ -13,13 +13,15 @@ import calc_tests
import importlib
import importlib.machinery
+import uitest.config
+
from uitest.framework import UITestCase
from libreoffice.connection import OfficeConnection
def parseArgs(argv):
- (optlist,args) = getopt.getopt(argv[1:], "hr",
- ["help", "soffice=", "userdir=", "dir=", "file="])
+ (optlist,args) = getopt.getopt(argv[1:], "hdr",
+ ["help", "debug", "soffice=", "userdir=", "dir=", "file="])
return (dict(optlist), args)
def usage():
@@ -101,6 +103,9 @@ if __name__ == '__main__':
usage()
sys.exit()
+ if "-d" in opts or "--debug" in opts:
+ uitest.config.use_sleep = True
+
result = unittest.TextTestRunner(verbosity=2).run(test_suite)
print("Tests run: %d" % result.testsRun)
print("Tests failed: %d" % len(result.failures))