summaryrefslogtreecommitdiff
path: root/TAO/tests/CDR/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/CDR/run_test.pl')
-rwxr-xr-xTAO/tests/CDR/run_test.pl41
1 files changed, 0 insertions, 41 deletions
diff --git a/TAO/tests/CDR/run_test.pl b/TAO/tests/CDR/run_test.pl
deleted file mode 100755
index 8d7b776e395..00000000000
--- a/TAO/tests/CDR/run_test.pl
+++ /dev/null
@@ -1,41 +0,0 @@
-# $Id$
-# -*- perl -*-
-eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
- & eval 'exec perl -S $0 $argv:q'
- if 0;
-
-use lib "../../../bin";
-require ACEutils;
-
-$brace="\#\#\#\#\#";
-$cdr_iter = 100;
-@tests = ("basic_types", "tc", "growth");
-@argslist = ("-n 256 -l 10", "", "-l 64 -h 256 -s 4 -n 100");
-$test = "";
-$args = "";
-$| = 1;
-print STDERR "\n";
-
-sub run_test
-{
- #my $test = shift (@tests);
- my $args = shift (@argslist);
-
- print STDERR "\n$brace $test $args test BEGUN\n";
- $TST = Process::Create ($EXEPREFIX."$test".$Process::EXE_EXT,
- "$args");
- print STDERR "\t$test RUNNING\n";
- $retval = ($TST->Wait ()) / 256;
- if (retval != 0)
- {
- print STDERR "$brace $test $args FAILED; exited with value $retval\n";
- }
- print STDERR "$brace $test ENDED successfully\n";
-}
-
-foreach $test (@tests)
-{
- run_test ($test, $args);
-}
-
-