summaryrefslogtreecommitdiff
path: root/selftest/selftest.py
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2012-03-04 16:50:21 +0100
committerJelmer Vernooij <jelmer@samba.org>2012-03-04 18:02:07 +0100
commit01ba5cf689d1aea8fd19ac809767319cd0c1d401 (patch)
treec15977b5d4dfd95a7392d90f245d8f2edd8ee19c /selftest/selftest.py
parent8ae7615cf36b449fae39790d43c66f3cdf39f876 (diff)
downloadsamba-01ba5cf689d1aea8fd19ac809767319cd0c1d401.tar.gz
samba-01ba5cf689d1aea8fd19ac809767319cd0c1d401.tar.bz2
samba-01ba5cf689d1aea8fd19ac809767319cd0c1d401.zip
selftest.py: Remove unused --verbose option.
Diffstat (limited to 'selftest/selftest.py')
-rwxr-xr-xselftest/selftest.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/selftest/selftest.py b/selftest/selftest.py
index 5a1092833e..e619515644 100755
--- a/selftest/selftest.py
+++ b/selftest/selftest.py
@@ -60,7 +60,6 @@ def read_includes(fn):
parser = optparse.OptionParser("TEST-REGEXES")
parser.add_option("--target", type="choice", choices=["samba", "samba3", "none"], default="samba", help="Samba version to target")
parser.add_option("--quick", help="run quick overall test", action="store_true", default=False)
-parser.add_option("--verbose", help="be verbose", action="store_true", default=False)
parser.add_option("--list", help="list available tests", action="store_true", default=False)
parser.add_option("--socket-wrapper", help="enable socket wrapper", action="store_true", default=False)
parser.add_option("--socket-wrapper-pcap", help="save traffic to pcap directories", type="str")
@@ -401,10 +400,6 @@ if opts.socket_wrapper:
os.environ["SELFTEST_INTERFACES"] = interfaces
else:
os.environ["SELFTEST_INTERFACES"] = ""
-if opts.verbose:
- os.environ["SELFTEST_VERBOSE"] = "1"
-else:
- os.environ["SELFTEST_VERBOSE"] = ""
if opts.quick:
os.environ["SELFTEST_QUICK"] = "1"
else: