summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_1693_Test/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_1693_Test/run_test.pl')
-rwxr-xr-xTAO/tests/Bug_1693_Test/run_test.pl22
1 files changed, 22 insertions, 0 deletions
diff --git a/TAO/tests/Bug_1693_Test/run_test.pl b/TAO/tests/Bug_1693_Test/run_test.pl
new file mode 100755
index 00000000000..255f60afe65
--- /dev/null
+++ b/TAO/tests/Bug_1693_Test/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;
+
+# -*- perl -*-
+# $Id$
+
+use lib '../../../bin';
+use PerlACE::Run_Test;
+
+print STDERR "\n\n==== Running Bug_1693_Test test\n";
+
+$T = new PerlACE::Process ("client");
+
+$test = $T->SpawnWaitKill (15);
+
+if ($test != 0) {
+ print STDERR "ERROR: Codec test returned $test\n";
+ exit 1;
+}
+
+exit 0;