summaryrefslogtreecommitdiff
path: root/selftest/selftest.pl
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2012-03-04 05:08:26 +0100
committerJelmer Vernooij <jelmer@samba.org>2012-03-04 07:54:51 +0100
commit4a8d55cd7d27fcce6f4bedb6af48a7698a3be86e (patch)
treee0fce94b51f78ffb914140f35e4cb075584b668c /selftest/selftest.pl
parent9654c61a9f1bb59ad3e59e59709b732635587993 (diff)
downloadsamba-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
Diffstat (limited to 'selftest/selftest.pl')
-rwxr-xr-xselftest/selftest.pl25
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) = @_;