summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/DevGuideExamples/NamingService/Naming_Server/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/DevGuideExamples/NamingService/Naming_Server/run_test.pl')
-rwxr-xr-xTAO/orbsvcs/DevGuideExamples/NamingService/Naming_Server/run_test.pl20
1 files changed, 20 insertions, 0 deletions
diff --git a/TAO/orbsvcs/DevGuideExamples/NamingService/Naming_Server/run_test.pl b/TAO/orbsvcs/DevGuideExamples/NamingService/Naming_Server/run_test.pl
new file mode 100755
index 00000000000..e0733c60dc9
--- /dev/null
+++ b/TAO/orbsvcs/DevGuideExamples/NamingService/Naming_Server/run_test.pl
@@ -0,0 +1,20 @@
+# $Id$
+
+eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
+ & eval 'exec perl -S $0 $argv:q'
+ if 0;
+
+use Env (ACE_ROOT);
+use lib "$ACE_ROOT/bin";
+use PerlACE::Run_Test;
+
+$CS = new PerlACE::Process("NamingMessenger");
+
+if ($CS->SpawnWaitKill(10) != 0) {
+ exit 1;
+}
+
+exit 0;
+
+
+