summaryrefslogtreecommitdiff
path: root/ACE/protocols/tests/RMCast/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/protocols/tests/RMCast/run_test.pl')
-rwxr-xr-xACE/protocols/tests/RMCast/run_test.pl34
1 files changed, 34 insertions, 0 deletions
diff --git a/ACE/protocols/tests/RMCast/run_test.pl b/ACE/protocols/tests/RMCast/run_test.pl
new file mode 100755
index 00000000000..6c21971afe2
--- /dev/null
+++ b/ACE/protocols/tests/RMCast/run_test.pl
@@ -0,0 +1,34 @@
+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 (40);
+
+if ($status != 0) {
+ print STDERR "ERROR: receiver returned $status\n";
+ $status = 1;
+}
+
+$sender->Kill ();
+
+exit $status;