summaryrefslogtreecommitdiffstats
path: root/PerlQt/tutorials/runall.pl
diff options
context:
space:
mode:
Diffstat (limited to 'PerlQt/tutorials/runall.pl')
-rw-r--r--PerlQt/tutorials/runall.pl8
1 files changed, 0 insertions, 8 deletions
diff --git a/PerlQt/tutorials/runall.pl b/PerlQt/tutorials/runall.pl
deleted file mode 100644
index d0363f1..0000000
--- a/PerlQt/tutorials/runall.pl
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/usr/bin/perl -w
-# Use the tutorials as a test suite
-@tutorials = (sort(glob("t?")), sort(glob("t??")));
-for $tutorial (@tutorials) {
- chdir($tutorial) || next;
- system("$^X -w $tutorial.pl");
- chdir("..");
-}