summaryrefslogtreecommitdiff
path: root/ACE/TAO/orbsvcs/tests/unit/Notify/MC/Statistic_Registry/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/orbsvcs/tests/unit/Notify/MC/Statistic_Registry/run_test.pl')
-rwxr-xr-xACE/TAO/orbsvcs/tests/unit/Notify/MC/Statistic_Registry/run_test.pl33
1 files changed, 33 insertions, 0 deletions
diff --git a/ACE/TAO/orbsvcs/tests/unit/Notify/MC/Statistic_Registry/run_test.pl b/ACE/TAO/orbsvcs/tests/unit/Notify/MC/Statistic_Registry/run_test.pl
new file mode 100755
index 00000000000..f775c421ccf
--- /dev/null
+++ b/ACE/TAO/orbsvcs/tests/unit/Notify/MC/Statistic_Registry/run_test.pl
@@ -0,0 +1,33 @@
+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;
+
+$status = 0;
+$debug_level = '0';
+
+foreach $i (@ARGV) {
+ if ($i eq '-debug') {
+ $debug_level = '10';
+ }
+}
+
+my($prog) = 'Statistic_Registry';
+
+my $server = PerlACE::TestTarget::create_target (1) || die "Create target 1 failed\n";
+
+$SV = $server->CreateProcess ($prog, "-ORBdebuglevel $debug_level");
+
+$status_server = $SV->SpawnWaitKill ($server->ProcessStartWaitInterval());
+
+if ($status_server != 0) {
+ print STDERR "ERROR: $prog returned $status_server\n";
+ $status = 1;
+}
+
+exit $status;