summaryrefslogtreecommitdiff
path: root/trunk/ACE/examples/Export/run_test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/ACE/examples/Export/run_test.pl')
-rwxr-xr-xtrunk/ACE/examples/Export/run_test.pl17
1 files changed, 17 insertions, 0 deletions
diff --git a/trunk/ACE/examples/Export/run_test.pl b/trunk/ACE/examples/Export/run_test.pl
new file mode 100755
index 00000000000..7c84078d8ff
--- /dev/null
+++ b/trunk/ACE/examples/Export/run_test.pl
@@ -0,0 +1,17 @@
+eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
+ & eval 'exec perl -S $0 $argv:q'
+ if 0;
+
+# $Id$
+# -*- perl -*-
+
+use lib "../../bin";
+use PerlACE::Run_Test;
+
+$TEST = new PerlACE::Process ("test");
+
+$status = $TEST->SpawnWaitKill (20);
+
+$status = 1 if ($status < 0);
+
+exit $status;