diff options
-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: |