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