summaryrefslogtreecommitdiff
path: root/TAO/tests/Multiple_Inheritance/run_test.pl
blob: 51b78e537fc14dab178ac4849289f47a51ad26ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#$Id$
# -*- perl -*-
eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
    & eval 'exec perl -S $0 $argv:q'
    if 0;

unshift @INC, '../../../bin';
require ACEutils;

$iorfile = "server.ior";
$SV = Process::Create ("server$Process::EXE_EXT", " -o $iorfile");

ACE::waitforfile ($iorfile);

$status  = system ("client$Process::EXE_EXT -i $iorfile");

$SV->Kill (); $SV->Wait ();

unlink $iorfile;

exit $status;