summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Latency/Collocation/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/performance-tests/Latency/Collocation/run_test.pl')
-rwxr-xr-xTAO/performance-tests/Latency/Collocation/run_test.pl22
1 files changed, 22 insertions, 0 deletions
diff --git a/TAO/performance-tests/Latency/Collocation/run_test.pl b/TAO/performance-tests/Latency/Collocation/run_test.pl
new file mode 100755
index 00000000000..1abcc0f5448
--- /dev/null
+++ b/TAO/performance-tests/Latency/Collocation/run_test.pl
@@ -0,0 +1,22 @@
+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;
+
+$status = 0;
+
+$SV = new PerlACE::Process ("Collocated_Test");
+
+$server = $SV->SpawnWaitKill (60);
+
+if ($server != 0) {
+ print STDERR "ERROR: Collocated_Test returned $server \n";
+ $status = 1;
+}
+
+exit $status;