added --null-connection as an experimental option

This commit is contained in:
Miroslav Stampar 2010-09-16 10:01:33 +00:00
parent 975b96ae28
commit bfffd5e333
2 changed files with 5 additions and 1 deletions

View File

@ -166,6 +166,7 @@ def start():
if not checkConnection() or not checkString() or not checkRegexp():
continue
if conf.useNullConnection:
checkNullConnection()
if not conf.dropSetCookie:

View File

@ -464,6 +464,9 @@ def cmdLineParser():
parser.add_option("--common-prediction", dest="useCommonPrediction", action="store_true",
help=SUPPRESS_HELP)
parser.add_option("--null-connection", dest="useNullConnection", action="store_true",
help=SUPPRESS_HELP)
parser.add_option("--smoke-test", dest="smokeTest", action="store_true",
help=SUPPRESS_HELP)