diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2012-03-04 16:50:28 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2012-03-04 18:02:07 +0100 |
commit | e7d6d67bee048109105b0ab0d865d7746934c332 (patch) | |
tree | 4d292e7e376ae07a76d1f7e2c19b25bb8df85a64 | |
parent | 01ba5cf689d1aea8fd19ac809767319cd0c1d401 (diff) | |
download | samba-e7d6d67bee048109105b0ab0d865d7746934c332.tar.gz |
selftest.pl: Remove unused --verbose option.
-rwxr-xr-x | selftest/selftest.pl | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/selftest/selftest.pl b/selftest/selftest.pl index 73283009096..cdcd2e4048f 100755 --- a/selftest/selftest.pl +++ b/selftest/selftest.pl @@ -45,7 +45,6 @@ my $opt_socket_wrapper_keep_pcap = undef; my $opt_one = 0; my @opt_exclude = (); my @opt_include = (); -my $opt_verbose = 0; my $opt_testenv = 0; my $opt_list = 0; my $ldap = undef; @@ -213,7 +212,6 @@ Samba4 Specific: Behaviour: --quick run quick overall test --one abort when the first test fails - --verbose be verbose --testenv run a shell in the requested test environment --list list available tests "; @@ -233,7 +231,6 @@ my $result = GetOptions ( 'include=s' => \@opt_include, 'srcdir=s' => \$srcdir, 'bindir=s' => \$bindir, - 'verbose' => \$opt_verbose, 'testenv' => \$opt_testenv, 'list' => \$opt_list, 'ldap:s' => \$ldap, @@ -563,11 +560,6 @@ if ($opt_socket_wrapper) { } else { $ENV{SELFTEST_INTERFACES} = ""; } -if ($opt_verbose) { - $ENV{SELFTEST_VERBOSE} = "1"; -} else { - $ENV{SELFTEST_VERBOSE} = ""; -} if ($opt_quick) { $ENV{SELFTEST_QUICK} = "1"; } else { |