1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-02 09:47:23 +03:00

selftest: Remove unnecessary uses.

This commit is contained in:
Jelmer Vernooij 2009-06-05 14:13:07 +02:00
parent 8a76e4ab29
commit e979560c13
4 changed files with 2 additions and 5 deletions

View File

@ -23,7 +23,6 @@ use Exporter;
use FindBin qw($RealBin); use FindBin qw($RealBin);
use lib "$RealBin/.."; use lib "$RealBin/..";
use Subunit qw(parse_results);
use BuildFarm; use BuildFarm;
use strict; use strict;

View File

@ -24,8 +24,6 @@ use warnings;
use FindBin qw($RealBin); use FindBin qw($RealBin);
use lib "$RealBin/.."; use lib "$RealBin/..";
use Subunit qw(parse_results);
sub new($$$) { sub new($$$) {
my ($class, $dirname, $statistics) = @_; my ($class, $dirname, $statistics) = @_;
my $self = { my $self = {

View File

@ -23,7 +23,7 @@ use Exporter;
use FindBin qw($RealBin); use FindBin qw($RealBin);
use lib "$RealBin/.."; use lib "$RealBin/..";
use Subunit qw(parse_results); use Subunit;
use strict; use strict;

View File

@ -129,7 +129,7 @@ use Getopt::Long;
use POSIX; use POSIX;
use Cwd qw(abs_path); use Cwd qw(abs_path);
use lib "$RealBin"; use lib "$RealBin";
use Subunit qw(parse_results); use Subunit;
use SocketWrapper; use SocketWrapper;
my $opt_help = 0; my $opt_help = 0;