summaryrefslogtreecommitdiff
path: root/TAO/examples/POA/Adapter_Activator/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/POA/Adapter_Activator/run_test.pl')
-rwxr-xr-xTAO/examples/POA/Adapter_Activator/run_test.pl120
1 files changed, 120 insertions, 0 deletions
diff --git a/TAO/examples/POA/Adapter_Activator/run_test.pl b/TAO/examples/POA/Adapter_Activator/run_test.pl
new file mode 100755
index 00000000000..e6420cec3d2
--- /dev/null
+++ b/TAO/examples/POA/Adapter_Activator/run_test.pl
@@ -0,0 +1,120 @@
+eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
+ & eval 'exec perl -S $0 $argv:q'
+ if 0;
+
+# $Id$
+# -*- perl -*-
+
+use lib "$ENV{ACE_ROOT}/bin";
+use PerlACE::Run_Test;
+
+$iorfile = PerlACE::LocalFile ("ior");
+
+$status = 0;
+$oneway = "";
+$iterations = 100;
+
+$extra_args = "";
+
+# Parse the arguments
+for ($i = 0; $i <= $#ARGV; $i++) {
+ if ($ARGV[$i] eq "-h" || $ARGV[$i] eq "-?") {
+ print "run_test [-h] [-i iterations] [-o] [-f ior file]\n";
+ print "\n";
+ print "-h -- prints this information\n";
+ print "-f -- ior file\n";
+ print "-i iterations -- specifies iterations\n";
+ print "-o -- call issued are oneways\n";
+ exit;
+ }
+ elsif ($ARGV[$i] eq "-o") {
+ $oneway = "-o";
+ }
+ elsif ($ARGV[$i] eq "-i") {
+ $iterations = $ARGV[$i + 1];
+ $i++;
+ }
+ elsif ($ARGV[$i] eq "-f") {
+ $iorfile = $ARGV[$i + 1];
+ $i++;
+ }
+ else {
+ $extra_args .= " " . $ARGV[$i];
+ }
+}
+
+$iorfile_1 = $iorfile."_1";
+$iorfile_2 = $iorfile."_2";
+$iorfile_3 = $iorfile."_3";
+
+unlink $iorfile_1;
+unlink $iorfile_2;
+unlink $iorfile_3;
+
+$SV = new PerlACE::Process ("server", "-f $iorfile $extra_args");
+$CL = new PerlACE::Process ("../Generic_Servant/client");
+
+$server = $SV->Spawn ();
+
+if ($server != 0) {
+ print STDERR "ERROR: server returned $server\n";
+ exit 1;
+}
+
+if (PerlACE::waitforfile_timed ($iorfile_1, $PerlACE::wait_interval_for_process_creation) == -1) {
+ print STDERR "ERROR: cannot find file <$iorfile_1>\n";
+ $SV->Kill ();
+ exit 1;
+}
+
+if (PerlACE::waitforfile_timed ($iorfile_2, $PerlACE::wait_interval_for_process_creation) == -1) {
+ print STDERR "ERROR: cannot find file <$iorfile_2>\n";
+ $SV->Kill ();
+ exit 1;
+}
+
+if (PerlACE::waitforfile_timed ($iorfile_3, $PerlACE::wait_interval_for_process_creation) == -1) {
+ print STDERR "ERROR: cannot find file <$iorfile_3>\n";
+ $SV->Kill ();
+ exit 1;
+}
+
+$CL->Arguments ("$extra_args $oneway -i $iterations -k file://$iorfile_1");
+
+$client = $CL->SpawnWaitKill (60);
+
+if ($client != 0) {
+ print STDERR "ERROR: client 1 returned $client\n";
+ $status = 1;
+}
+
+$CL->Arguments ("$extra_args $oneway -i $iterations -k file://$iorfile_2");
+
+$client = $CL->SpawnWaitKill (60);
+
+if ($client != 0) {
+ print STDERR "ERROR: client 2 returned $client\n";
+ $status = 1;
+}
+
+$CL->Arguments ("$extra_args $oneway -i $iterations -k file://$iorfile_3 -x");
+
+$client = $CL->SpawnWaitKill (60);
+
+if ($client != 0) {
+ print STDERR "ERROR: client 3 returned $client\n";
+ $status = 1;
+}
+
+$server = $SV->WaitKill (5);
+
+if ($server != 0) {
+ print STDERR "ERROR: server returned $server\n";
+ $status = 1;
+}
+
+unlink $iorfile_1;
+unlink $iorfile_2;
+unlink $iorfile_3;
+
+exit $status;