summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/Nested_Upcall_Crash/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/Nested_Upcall_Crash/run_test.pl')
-rwxr-xr-xACE/TAO/tests/Nested_Upcall_Crash/run_test.pl152
1 files changed, 152 insertions, 0 deletions
diff --git a/ACE/TAO/tests/Nested_Upcall_Crash/run_test.pl b/ACE/TAO/tests/Nested_Upcall_Crash/run_test.pl
new file mode 100755
index 00000000000..c07a9d3f567
--- /dev/null
+++ b/ACE/TAO/tests/Nested_Upcall_Crash/run_test.pl
@@ -0,0 +1,152 @@
+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::TestTarget;
+
+$status = 0;
+$debug_level = '0';
+$quick = 0;
+
+foreach $i (@ARGV) {
+ if ($i eq '-debug') {
+ $debug_level = '10';
+ } elsif ($i eq '-quick') {
+ $quick = 1;
+ }
+}
+
+my $server = PerlACE::TestTarget::create_target (1) || die "Create target 1 failed\n";
+my $client1 = PerlACE::TestTarget::create_target (2) || die "Create target 2 failed\n";
+my $client2 = PerlACE::TestTarget::create_target (3) || die "Create target 3 failed\n";
+my $client3 = PerlACE::TestTarget::create_target (4) || die "Create target 4 failed\n";
+
+my $iorbase = "server.ior";
+my $server_iorfile = $server->LocalFile ($iorbase);
+my $client1_iorfile = $client1->LocalFile ($iorbase);
+my $client2_iorfile = $client2->LocalFile ($iorbase);
+my $client3_iorfile = $client3->LocalFile ($iorbase);
+$server->DeleteFile($iorbase);
+$client1->DeleteFile($iorbase);
+$client2->DeleteFile($iorbase);
+$client3->DeleteFile($iorbase);
+
+$SV = $server->CreateProcess ("server",
+ "-ORBdebuglevel $debug_level ".
+ "-o $server_iorfile");
+$CL1 = $client1->CreateProcess ("client", "-k file://$client1_iorfile");
+$CL2 = $client2->CreateProcess ("client", "-k file://$client2_iorfile");
+$CL3 = $client3->CreateProcess ("client", "-k file://$client3_iorfile");
+
+$server_status = $SV->Spawn ();
+
+if ($server_status != 0) {
+ print STDERR "ERROR: server returned $server_status\n";
+ exit 1;
+}
+
+if ($server->WaitForFileTimed ($iorbase,
+ $server->ProcessStartWaitInterval()) == -1) {
+ print STDERR "ERROR: cannot find file <$server_iorfile>\n";
+ $SV->Kill (); $SV->TimedWait (1);
+ exit 1;
+}
+
+if ($server->GetFile ($iorbase) == -1) {
+ print STDERR "ERROR: cannot retrieve file <$server_iorfile>\n";
+ $SV->Kill (); $SV->TimedWait (1);
+ exit 1;
+}
+if ($client1->PutFile ($iorbase) == -1) {
+ print STDERR "ERROR: cannot set file <$client1_iorfile>\n";
+ $SV->Kill (); $SV->TimedWait (1);
+ exit 1;
+}
+if ($client2->PutFile ($iorbase) == -1) {
+ print STDERR "ERROR: cannot set file <$client2_iorfile>\n";
+ $SV->Kill (); $SV->TimedWait (1);
+ exit 1;
+}
+if ($client3->PutFile ($iorbase) == -1) {
+ print STDERR "ERROR: cannot set file <$client3_iorfile>\n";
+ $SV->Kill (); $SV->TimedWait (1);
+ exit 1;
+}
+
+local $start_time = time();
+local $max_running_time = 600; # 10 minutes
+local $elapsed = time() - $start_time;
+
+if ($quick) {
+ $elapsed = 0;
+ $max_running_time = 1;
+}
+
+while($elapsed < $max_running_time) {
+ $client_status = $CL1->Spawn ();
+ if ($client_status != 0) {
+ print STDERR "ERROR: client returned $client_status\n";
+ $SV->Kill (); $SV->TimedWait (1);
+ exit 1;
+ }
+
+ $client_status = $CL2->Spawn ();
+ if ($client_status != 0) {
+ print STDERR "ERROR: client returned $client_status\n";
+ $SV->Kill (); $SV->TimedWait (1);
+ $CL1->Kill (); $CL1->TimedWait (1);
+ exit 1;
+ }
+
+ $client_status = $CL3->Spawn ();
+ if ($client_status != 0) {
+ print STDERR "ERROR: client returned $client_status\n";
+ $SV->Kill (); $SV->TimedWait (1);
+ $CL1->Kill (); $CL1->TimedWait (1);
+ $CL2->Kill (); $CL2->TimedWait (1);
+ exit 1;
+ }
+
+ $client_status = $CL1->WaitKill ($client1->ProcessStopWaitInterval() + 15);
+ if ($client_status < 0) {
+ print STDERR "ERROR: client returned $client_status\n";
+ $SV->Kill (); $SV->TimedWait (1);
+ $CL2->Kill (); $CL2->TimedWait (1);
+ $CL3->Kill (); $CL3->TimedWait (1);
+ exit 1;
+ }
+
+ $client_status = $CL2->WaitKill ($client2->ProcessStopWaitInterval() + 15);
+ if ($client_status < 0) {
+ print STDERR "ERROR: client returned $client_status\n";
+ $SV->Kill (); $SV->TimedWait (1);
+ $CL3->Kill (); $CL3->TimedWait (1);
+ exit 1;
+ }
+
+ $client_status = $CL3->WaitKill ($client3->ProcessStopWaitInterval() + 15);
+ if ($client_status < 0) {
+ print STDERR "ERROR: client returned $client_status\n";
+ $SV->Kill (); $SV->TimedWait (1);
+ exit 1;
+ }
+
+ $elapsed = time() - $start_time;
+}
+
+$server_status = $SV->TerminateWaitKill ($server->ProcessStopWaitInterval());
+if ($server_status != 0) {
+ print STDERR "ERROR: server returned $server_status\n";
+ $status = 1;
+}
+
+$server->DeleteFile($iorbase);
+$client1->DeleteFile($iorbase);
+$client2->DeleteFile($iorbase);
+$client3->DeleteFile($iorbase);
+
+exit $status;