diff options
author | Eric Milkie <milkie@10gen.com> | 2015-06-18 09:14:23 -0400 |
---|---|---|
committer | Eric Milkie <milkie@10gen.com> | 2015-06-18 09:16:08 -0400 |
commit | 75081de3da74534058d370838d37b31b06ef359c (patch) | |
tree | b576fcd14d82f23928791275f0704b817c9b44e1 /buildscripts | |
parent | e383a423d98daade18179738d72862cf6946580b (diff) | |
download | mongo-75081de3da74534058d370838d37b31b06ef359c.tar.gz |
SERVER-19025 add fassertStatusOK to errorcodes.py
Diffstat (limited to 'buildscripts')
-rwxr-xr-x | buildscripts/errorcodes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/errorcodes.py b/buildscripts/errorcodes.py index 5e8e0614e6e..a958ccd5943 100755 --- a/buildscripts/errorcodes.py +++ b/buildscripts/errorcodes.py @@ -52,7 +52,7 @@ def parseSourceFiles( callback ): patterns = [ re.compile( r"[umsg]asser(?:t|ted)(?:NoTrace)? *\( *(\d+)" ) , re.compile( r"(?:User|Msg|MsgAssertion)Exception *\( *(\d+)" ), - re.compile( r"fassert(?:Failed)?(?:WithStatus)?(?:NoTrace)? *\( *(\d+)" ), + re.compile( r"fassert(?:Failed)?(?:WithStatus)?(?:NoTrace)?(?:StatusOK)? *\( *(\d+)" ), ] bad = [ re.compile( r"^\s*assert *\(" ) ] |