Merge pull request #1815 from sonndinh/get_signal_info
[ACE_TAO.git] / TAO / tests / Collocated_Best / Collocated_Best_Direct / run_test.pl
blobb300700a728319916560810ec993f0bcc6c7a605
1 eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
2 & eval 'exec perl -S $0 $argv:q'
3 if 0;
5 # -*- perl -*-
7 use lib "$ENV{ACE_ROOT}/bin";
8 use PerlACE::TestTarget;
10 my $server = PerlACE::TestTarget::create_target(1) || die "Create target 1 failed\n";
12 $iorbase = "test.ior";
13 my $server_iorfile = $server->LocalFile ($iorbase);
14 $server->DeleteFile($iorbase);
16 $status = 0;
18 $SV = $server->CreateProcess ("Collocated_Best_Direct");
20 print STDERR "======== Running with ORBCollocationg = global, -ORBCollocationStrategy = direct)\n";
21 $SV->Arguments ("-o $server_iorfile -k file://$server_iorfile -ORBCollocation global -ORBCollocationStrategy direct");
22 $sv = $SV->SpawnWaitKill ($server->ProcessStartWaitInterval());
24 if ($sv != 0) {
25 print STDERR "ERROR in Collocated_Test\n";
26 $status = 1;
28 $server->DeleteFile($iorbase);
30 $server->DeleteFile($iorbase);
32 print STDERR "======== Running with -ORBCollocation global -ORBCollocationStrategy best \n";
33 $SV->Arguments ("-o $server_iorfile -k file://$server_iorfile -ORBCollocation global -ORBCollocationStrategy best");
34 $sv = $SV->SpawnWaitKill ($server->ProcessStartWaitInterval());
36 if ($sv != 0) {
37 print STDERR "ERROR in Collocated_Test\n";
38 $status = 1;
41 $server->DeleteFile($iorbase);
42 $server->GetStderrLog();
44 exit $status;