summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/Bug_1476_Test/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/Bug_1476_Test/run_test.pl')
-rwxr-xr-xACE/TAO/tests/Bug_1476_Test/run_test.pl45
1 files changed, 45 insertions, 0 deletions
diff --git a/ACE/TAO/tests/Bug_1476_Test/run_test.pl b/ACE/TAO/tests/Bug_1476_Test/run_test.pl
new file mode 100755
index 00000000000..c3694f44c0f
--- /dev/null
+++ b/ACE/TAO/tests/Bug_1476_Test/run_test.pl
@@ -0,0 +1,45 @@
+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';
+
+foreach $i (@ARGV) {
+ if ($i eq '-debug') {
+ $debug_level = '10';
+ }
+}
+
+my $client = PerlACE::TestTarget::create_target (1) || die "Create target 1 failed\n";
+
+my $iorbase = "test.ior";
+my $client_iorfile = $client->LocalFile ($iorbase);
+
+$CL = $client->CreateProcess ("client");
+
+my @synchs = ("none","delayed");
+my @levels = ("obj", "orb", "thread");
+
+foreach $synch (@synchs) {
+ foreach $level (@levels) {
+ $CL->Arguments ("-ORBDebuglevel $debug_level -k file://$client_iorfile -s$synch -l$level");
+
+ $client_status = $CL->SpawnWaitKill ($client->ProcessStartWaitInterval() + 285);
+
+ if ($client_status != 0) {
+ print STDERR "ERROR: client returned $client_status\n";
+ $status = 1;
+ }
+
+ print STDOUT "----------\n";
+ }
+}
+
+exit $status;