summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/unit/Trading/Interpreter/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/unit/Trading/Interpreter/run_test.pl')
-rwxr-xr-xTAO/orbsvcs/tests/unit/Trading/Interpreter/run_test.pl24
1 files changed, 24 insertions, 0 deletions
diff --git a/TAO/orbsvcs/tests/unit/Trading/Interpreter/run_test.pl b/TAO/orbsvcs/tests/unit/Trading/Interpreter/run_test.pl
new file mode 100755
index 00000000000..162b910b3fb
--- /dev/null
+++ b/TAO/orbsvcs/tests/unit/Trading/Interpreter/run_test.pl
@@ -0,0 +1,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::Run_Test;
+use File::Basename;
+
+my $status = 0;
+
+my $SV = new PerlACE::Process ("Interpreter");
+
+my $server = $SV->SpawnWaitKill (10);
+
+if ($server != 0) {
+ print STDERR "ERROR: ", basename($SV->Executable()),
+ " returned $server \n";
+ $status = 1;
+}
+
+exit $status;