summaryrefslogtreecommitdiff
path: root/tests/Optimized_Connection/run_test.pl
blob: b79ba666d130e83ebadd186efe8b4fe30953eafe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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 = "oc.ior";
my $client_iorfile = $client->LocalFile ($iorbase);

my $client_conf = $client->LocalFile ("oc_svc.conf");

$CL = $client->CreateProcess ("client", "-k file://$client_iorfile ".
                                        "-orbsvcconf $client_conf ".
                                        "-ORBDebugLevel $debug_level");
                                        

if ($client->WaitForFileTimed ($iorbase,
                           $client->ProcessStartWaitInterval()) == -1) {
    print STDERR "ERROR: cannot find file <$client_iorfile>\n";
    exit 1;
}

$client_status = $CL->SpawnWaitKill ($client->ProcessStartWaitInterval());

if ($client_status != 0) {
    print STDERR "ERROR: client returned $client_status\n";
    $status = 1;
}

exit $status;