summaryrefslogtreecommitdiffstats
path: root/bin/check-missing-unittests.py
diff options
context:
space:
mode:
authorXisco Fauli <xiscofauli@libreoffice.org>2020-04-28 11:14:35 +0200
committerXisco FaulĂ­ <xiscofauli@libreoffice.org>2020-05-14 18:05:21 +0200
commitbdc8cd060dca8a97ef7970d1c0ab30694930beea (patch)
tree16a533a15e4656a5b1402095bd359c8e11b9fae0 /bin/check-missing-unittests.py
parentmove SvxMetricField inside svx (diff)
downloadcore-bdc8cd060dca8a97ef7970d1c0ab30694930beea.tar.gz
core-bdc8cd060dca8a97ef7970d1c0ab30694930beea.zip
check-missing-unittests: Add xhtml, html and doc formats
Change-Id: Ia4d7cf5c10f92a6d69b0d5e8247d8b844b17c62f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/93041 Tested-by: Jenkins Reviewed-by: Xisco FaulĂ­ <xiscofauli@libreoffice.org>
Diffstat (limited to 'bin/check-missing-unittests.py')
-rwxr-xr-xbin/check-missing-unittests.py22
1 files changed, 20 insertions, 2 deletions
diff --git a/bin/check-missing-unittests.py b/bin/check-missing-unittests.py
index 0e27243b6cde..9a81b3ab71a9 100755
--- a/bin/check-missing-unittests.py
+++ b/bin/check-missing-unittests.py
@@ -15,8 +15,11 @@ def main(ignoredBugs):
results = {
'export': {
'docx': {},
+ 'doc': {},
'pptx': {},
- 'xlsx': {}
+ 'xlsx': {},
+ 'xhtml': {},
+ 'html': {},
}
}
hasTestSet = set()
@@ -64,12 +67,27 @@ def main(ignoredBugs):
if 'qa' in changedFiles:
hasTestSet.add(bugId)
continue
- elif 'sw/source/filter/ww8/docx' in changedFiles:
+
+ elif 'sw/source/filter/ww8/docx' in changedFiles or \
+ 'writerfilter/source/dmapper' in changedFiles or \
+ 'starmath/source/ooxmlimport' in changedFiles:
results['export']['docx'][bugId] = summary
+
+ elif 'sw/source/filter/ww8/ww8' in changedFiles:
+ results['export']['doc'][bugId] = summary
+
elif 'sc/source/filter/excel/xe' in changedFiles:
results['export']['xlsx'][bugId] = summary
+
elif 'oox/source/export/' in changedFiles:
results['export']['pptx'][bugId] = summary
+
+ elif 'filter/source/xslt/odf2xhtml/export' in changedFiles:
+ results['export']['xhtml'][bugId] = summary
+
+ elif 'sw/source/filter/html/' in changedFiles:
+ results['export']['html'][bugId] = summary
+
# Add others here
print()