summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3552_Regression/run_test.pl
blob: 191a61fe38b87c5f17409cfb0b78294a0ba6940f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 $target1 = PerlACE::TestTarget::create_target (1) || die "Create target 1 failed\n";
my $check = $target1->CreateProcess ("check");
my $result = $check->SpawnWaitKill ($target1->ProcessStartWaitInterval());
if ($result != 0) {
    print STDERR "ERROR: check returned $result\n";
    exit 1;
}

exit 0;