summaryrefslogtreecommitdiff
path: root/protocols/tests/RMCast/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/tests/RMCast/run_test.pl')
-rwxr-xr-xprotocols/tests/RMCast/run_test.pl34
1 files changed, 0 insertions, 34 deletions
diff --git a/protocols/tests/RMCast/run_test.pl b/protocols/tests/RMCast/run_test.pl
deleted file mode 100755
index 699bcd103e9..00000000000
--- a/protocols/tests/RMCast/run_test.pl
+++ /dev/null
@@ -1,34 +0,0 @@
-eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
- & eval 'exec perl -S $0 $argv:q'
- if 0;
-
-# $Id$
-# -*- perl -*-
-
-use lib '../../../bin';
-use PerlACE::Run_Test;
-
-$status = 0;
-
-$sender = new PerlACE::Process ("sender", "224.1.2.3:12345");
-$receiver = new PerlACE::Process ("receiver", "224.1.2.3:12345");
-
-
-$receiver->Spawn ();
-
-# Wait for receiver to start.
-#
-sleep ($PerlACE::wait_interval_for_process_creation);
-
-$sender->Spawn ();
-
-$status = $receiver->WaitKill (20);
-
-if ($status != 0) {
- print STDERR "ERROR: receiver returned $status\n";
- $status = 1;
-}
-
-$sender->Kill ();
-
-exit $status;