diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2012-03-04 05:08:26 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2012-03-04 07:54:51 +0100 |
commit | 4a8d55cd7d27fcce6f4bedb6af48a7698a3be86e (patch) | |
tree | e0fce94b51f78ffb914140f35e4cb075584b668c | |
parent | 9654c61a9f1bb59ad3e59e59709b732635587993 (diff) | |
download | samba-4a8d55cd7d27fcce6f4bedb6af48a7698a3be86e.tar.gz samba-4a8d55cd7d27fcce6f4bedb6af48a7698a3be86e.tar.bz2 samba-4a8d55cd7d27fcce6f4bedb6af48a7698a3be86e.zip |
selftest: Remove unused vde functions.
Autobuild-User: Jelmer Vernooij <jelmer@samba.org>
Autobuild-Date: Sun Mar 4 07:54:51 CET 2012 on sn-devel-104
-rwxr-xr-x | selftest/selftest.pl | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/selftest/selftest.pl b/selftest/selftest.pl index 045f1b83f0..7328300909 100755 --- a/selftest/selftest.pl +++ b/selftest/selftest.pl @@ -387,31 +387,6 @@ unless ($opt_list) { } } -# -# Start a Virtual Distributed Ethernet Switch -# Returns the pid of the switch. -# -sub start_vde_switch($) -{ - my ($path) = @_; - - system("vde_switch --pidfile $path/vde.pid --sock $path/vde.sock --daemon"); - - open(PID, "$path/vde.pid"); - <PID> =~ /([0-9]+)/; - my $pid = $1; - close(PID); - - return $pid; -} - -# Stop a Virtual Distributed Ethernet Switch -sub stop_vde_switch($) -{ - my ($pid) = @_; - kill 9, $pid; -} - sub read_test_regexes($) { my ($name) = @_; |