diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-12-09 10:35:21 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-12-09 10:35:21 -0800 |
commit | fa8f1ca2a4c4ab37cc322341d543885057b7957c (patch) | |
tree | d7b7c0257afe1caa688bff567d50de3ae1eac34d /t | |
parent | 8828aa3418792ff9deb2ab264c6934a5d0bb15e0 (diff) | |
parent | 3328acedc6104e3d46e8f0d26006d9650092ef3e (diff) | |
download | git-fa8f1ca2a4c4ab37cc322341d543885057b7957c.tar.gz |
Merge branch 'ab/require-perl-5.8' into maint
* ab/require-perl-5.8:
perl: use "use warnings" instead of -w
perl: bump the required Perl version to 5.8 from 5.6.[21]
Diffstat (limited to 't')
-rwxr-xr-x | t/t7006/test-terminal.perl | 1 | ||||
-rwxr-xr-x | t/t9700/test.pl | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/t/t7006/test-terminal.perl b/t/t7006/test-terminal.perl index 73ff809371..6b5f22ae4a 100755 --- a/t/t7006/test-terminal.perl +++ b/t/t7006/test-terminal.perl @@ -1,4 +1,5 @@ #!/usr/bin/perl +use 5.008; use strict; use warnings; use IO::Pty; diff --git a/t/t9700/test.pl b/t/t9700/test.pl index 671f38db2b..c15ca2d647 100755 --- a/t/t9700/test.pl +++ b/t/t9700/test.pl @@ -1,7 +1,7 @@ #!/usr/bin/perl use lib (split(/:/, $ENV{GITPERLLIB})); -use 5.006002; +use 5.008; use warnings; use strict; |