summaryrefslogtreecommitdiff
path: root/ACE/TAO/performance-tests/Latency/Collocation/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/performance-tests/Latency/Collocation/run_test.pl')
-rwxr-xr-xACE/TAO/performance-tests/Latency/Collocation/run_test.pl29
1 files changed, 29 insertions, 0 deletions
diff --git a/ACE/TAO/performance-tests/Latency/Collocation/run_test.pl b/ACE/TAO/performance-tests/Latency/Collocation/run_test.pl
new file mode 100755
index 00000000000..ced6a4d44ad
--- /dev/null
+++ b/ACE/TAO/performance-tests/Latency/Collocation/run_test.pl
@@ -0,0 +1,29 @@
+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 $test = PerlACE::TestTarget::create_target (1) || die "Create target 1 failed\n";
+$T = $test->CreateProcess ("Collocated_Test", "-ORBdebuglevel $debug_level");
+$test_status = $T->SpawnWaitKill ($test->ProcessStartWaitInterval() + 45);
+
+if ($test_status != 0) {
+ print STDERR "ERROR: Collocated_Test returned $test_status\n";
+ exit 1;
+}
+
+exit $status;