diff options
author | Xisco Fauli <xiscofauli@libreoffice.org> | 2021-05-31 19:10:54 +0200 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2021-06-01 09:28:56 +0200 |
commit | e1908f9e2345d9aebc28d93a8c647f0ed69b360e (patch) | |
tree | b39058838179950b090ce656d6ac4ac8867c5c8a /bin | |
parent | c2096ecb244cd70736e1e3be02e856a6d9ef57b5 (diff) |
check-missing-unittests: add changes in svl/source/numbers/
Change-Id: Iabbde5976380c9e39590ad25ed4359f21290485b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116494
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/check-missing-unittests.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/check-missing-unittests.py b/bin/check-missing-unittests.py index b685d00993bf..50f329f6139d 100755 --- a/bin/check-missing-unittests.py +++ b/bin/check-missing-unittests.py @@ -39,6 +39,7 @@ def main(ignoredBugs): }, 'calc': { 'import': {}, + 'format': {}, 'others': {}, }, 'impress': { @@ -132,6 +133,9 @@ def main(ignoredBugs): elif 'sc/source/core/tool/interpr' in changedFiles: results['calc']['import'][bugId] = infoList + elif 'svl/source/numbers/' in changedFiles: + results['calc']['format'][bugId] = infoList + # Keep the following if statements at the end elif 'sc/source/core/data/' in changedFiles: |