summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/ORB_Local_Config/Bug_2612/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/ORB_Local_Config/Bug_2612/run_test.pl')
-rwxr-xr-xACE/TAO/tests/ORB_Local_Config/Bug_2612/run_test.pl23
1 files changed, 23 insertions, 0 deletions
diff --git a/ACE/TAO/tests/ORB_Local_Config/Bug_2612/run_test.pl b/ACE/TAO/tests/ORB_Local_Config/Bug_2612/run_test.pl
new file mode 100755
index 00000000000..57d2eb0909d
--- /dev/null
+++ b/ACE/TAO/tests/ORB_Local_Config/Bug_2612/run_test.pl
@@ -0,0 +1,23 @@
+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";
+$server->AddLibPath ('../lib');
+
+$SV = $server->CreateProcess ("Test");
+
+$test = $SV->SpawnWaitKill ($server->ProcessStartWaitInterval());
+
+if ($test != 0) {
+ print STDERR "ERROR: test returned $test\n";
+ exit 1;
+}
+
+exit 0;