Commit 1caa5ea3 authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

#3239 allow all ^toku symbols in the globals list refs[t:3239]

git-svn-id: file:///svn/toku/tokudb@27721 c7de825b-a66e-492c-adef-691d508d4ae1
parent e91e2497
...@@ -21,7 +21,7 @@ def checkglobals(libname, exceptsymbols, verbose): ...@@ -21,7 +21,7 @@ def checkglobals(libname, exceptsymbols, verbose):
type = match.group(2) type = match.group(2)
symbol = match.group(3) symbol = match.group(3)
if verbose: print type, symbol if verbose: print type, symbol
match = re.match("^toku_|^__toku|^db_env_set", symbol) match = re.match("^toku|^__toku|^db_", symbol)
if match == None and not exceptsymbols.has_key(symbol): if match == None and not exceptsymbols.has_key(symbol):
print "non toku symbol=", symbol print "non toku symbol=", symbol
badglobals = 1 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