Commit 71777d0f authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

fix the library globals error filter

git-svn-id: file:///svn/toku/tokudb@20136 c7de825b-a66e-492c-adef-691d508d4ae1
parent 8d7f3273
......@@ -21,7 +21,7 @@ def checkglobals(libname, exceptsymbols, verbose):
type = match.group(2)
symbol = match.group(3)
if verbose: print type, symbol
match = re.match("^toku_|^__toku", symbol)
match = re.match("^toku_|^__toku|^db_env_set", symbol)
if match == None and not exceptsymbols.has_key(symbol):
print "non toku symbol=", symbol
badglobals = 1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment