summaryrefslogtreecommitdiff
path: root/buildscripts/idl/idl_check_compatibility.py
diff options
context:
space:
mode:
authorRobert Guo <robert.guo@mongodb.com>2022-03-07 15:18:18 -0500
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-03-07 21:25:20 +0000
commitd93689f1eae96ffbd5f1d6fa36ff1ec69c6c4ef2 (patch)
treed9b2d65dd3a0562b4b6b73b095402c9bbe05cfa0 /buildscripts/idl/idl_check_compatibility.py
parentc72c44ad03a1872871679152424a89a83d1c8816 (diff)
downloadmongo-d93689f1eae96ffbd5f1d6fa36ff1ec69c6c4ef2.tar.gz
SERVER-64301 ignore third-party IDLs in stable API check
Diffstat (limited to 'buildscripts/idl/idl_check_compatibility.py')
-rw-r--r--buildscripts/idl/idl_check_compatibility.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/buildscripts/idl/idl_check_compatibility.py b/buildscripts/idl/idl_check_compatibility.py
index 277356fd0bb..7198bdf9659 100644
--- a/buildscripts/idl/idl_check_compatibility.py
+++ b/buildscripts/idl/idl_check_compatibility.py
@@ -176,7 +176,10 @@ IGNORE_UNSTABLE_LIST: List[str] = [
'aggregate-reply-cursor',
]
-SKIPPED_FILES = ["unittest.idl"]
+SKIPPED_FILES = [
+ "unittest.idl", "mozILocalization.idl", "mozILocaleService.idl", "mozIOSPreferences.idl",
+ "nsICollation.idl", "nsIStringBundle.idl", "nsIScriptableUConv.idl", "nsITextToSubURI.idl"
+]
class FieldCompatibility: