summaryrefslogtreecommitdiff
path: root/TAO/tests/Collocation_Opportunities/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Collocation_Opportunities/run_test.pl')
-rwxr-xr-xTAO/tests/Collocation_Opportunities/run_test.pl25
1 files changed, 25 insertions, 0 deletions
diff --git a/TAO/tests/Collocation_Opportunities/run_test.pl b/TAO/tests/Collocation_Opportunities/run_test.pl
new file mode 100755
index 00000000000..10921ceda97
--- /dev/null
+++ b/TAO/tests/Collocation_Opportunities/run_test.pl
@@ -0,0 +1,25 @@
+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;
+
+if (PerlACE::is_vxworks_test()) {
+ $T = new PerlACE::ProcessVX ("Collocation_Opportunities");
+}
+else {
+ $T = new PerlACE::Process ("Collocation_Opportunities");
+}
+
+$test = $T->SpawnWaitKill (60);
+
+if ($test != 0) {
+ print STDERR "ERROR: test returned $test\n";
+ exit 1;
+}
+
+exit 0;