summaryrefslogtreecommitdiff
path: root/tests/CSD_Collocation/run_test.pl
blob: d8a46d5d5afad1b1816d9e8fc7ac85bec03a7c8d (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
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";
my $svcconf = "svc.conf.csd";
my $server_svcconf = $server->LocalFile ($svcconf);

$SV = $server->CreateProcess ("Collocation",  "-ORBSvcConf $server_svcconf");

$test = $SV->SpawnWaitKill ($server->ProcessStartWaitInterval());

if ($test != 0) {
    print STDERR "ERROR: test returned $test\n";
    exit 1;
}

exit 0;