summaryrefslogtreecommitdiff
path: root/runtests.pl
diff options
context:
space:
mode:
authorDoug Bell <madcityzen@gmail.com>2014-09-03 23:31:55 -0500
committerDoug Bell <madcityzen@gmail.com>2014-09-03 23:31:55 -0500
commitd67a01b8619e59785ac3825c46c2ce8ce2e31b11 (patch)
tree4303ab49b683843822143ec3b6adfc489f13cbe6 /runtests.pl
parentc0c2ae0bf1e88ec807ad9868c8a3f07388a25511 (diff)
require at least Perl 5.6
The core modules and pragmas being used require at least Perl 5.6 in order to work. Explicitly saying "use 5.006" will make the error more clear.
Diffstat (limited to 'runtests.pl')
-rw-r--r--runtests.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/runtests.pl b/runtests.pl
index ce72931..7bffe81 100644
--- a/runtests.pl
+++ b/runtests.pl
@@ -1,4 +1,5 @@
#!/usr/bin/env perl
+use 5.006;
use warnings;
use strict;
use utf8;