summaryrefslogtreecommitdiff
path: root/TAO/tests/Collocated_Best/Collocated_Best_ThuP/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Collocated_Best/Collocated_Best_ThuP/run_test.pl')
-rwxr-xr-xTAO/tests/Collocated_Best/Collocated_Best_ThuP/run_test.pl44
1 files changed, 44 insertions, 0 deletions
diff --git a/TAO/tests/Collocated_Best/Collocated_Best_ThuP/run_test.pl b/TAO/tests/Collocated_Best/Collocated_Best_ThuP/run_test.pl
new file mode 100755
index 00000000000..99836c08852
--- /dev/null
+++ b/TAO/tests/Collocated_Best/Collocated_Best_ThuP/run_test.pl
@@ -0,0 +1,44 @@
+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;
+
+my $server = PerlACE::TestTarget::create_target(1) || die "Create target 1 failed\n";
+
+$iorbase = "test.ior";
+my $server_iorfile = $server->LocalFile ($iorbase);
+$server->DeleteFile($iorbase);
+
+$status = 0;
+
+$SV = $server->CreateProcess ("Collocated_Best_ThruP");
+
+$server->DeleteFile($iorbase);
+print STDERR "======== Running with ORBCollocationg = global, (default ORBCollocationStrategy = thru_poa)\n";
+$SV->Arguments ("-o $server_iorfile -k file://$server_iorfile -ORBCollocation global");
+$sv = $SV->SpawnWaitKill ($server->ProcessStartWaitInterval());
+
+if ($sv != 0) {
+ print STDERR "ERROR in Collocated_Test\n";
+ $status = 1;
+}
+$server->DeleteFile($iorbase);
+
+print STDERR "======== Running with -ORBCollocation global -ORBCollocationStrategy best \n";
+$SV->Arguments ("-o $server_iorfile -k file://$server_iorfile -ORBCollocation global -ORBCollocationStrategy best");
+$sv = $SV->SpawnWaitKill ($server->ProcessStartWaitInterval());
+
+if ($sv != 0) {
+ print STDERR "ERROR in Collocated_Test\n";
+ $status = 1;
+}
+
+$server->DeleteFile($iorbase);
+$server->GetStderrLog();
+
+exit $status;