changeset 13621:a486be1eceb0

test-update-copyright.sh: require perl 5.8.0 * tests/test-update-copyright.sh: Require 5.8.0, which Tom G. Christensen has confirmed is adequate, while 5.6.1 is not.
author Jim Meyering <meyering@redhat.com>
date Thu, 02 Sep 2010 17:53:36 +0200
parents fcb502a0b6e2
children fcda011710d9
files ChangeLog tests/test-update-copyright.sh
diffstat 2 files changed, 10 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2010-09-02  Jim Meyering  <meyering@redhat.com>
+
+	test-update-copyright.sh: require perl 5.8.0
+	* tests/test-update-copyright.sh: Require 5.8.0,
+	which Tom G. Christensen has confirmed is adequate,
+	while 5.6.1 is not.
+
 2010-09-02  Eric Blake  <eblake@redhat.com>
 
 	wctype: fix typo in previous commit
--- a/tests/test-update-copyright.sh
+++ b/tests/test-update-copyright.sh
@@ -16,9 +16,9 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-# Skip this test if Perl is too old.  FIXME: 5.6.0 is just a guess.
-# We have a report that 5.004_05 is inadequate and that 5.8.8 works.
-perl -e 'require 5.6.0' || exit 77
+# Skip this test if Perl is too old.  FIXME: 5.8.0 is just a guess.
+# We have a report that 5.6.1 is inadequate and that 5.8.0 works.
+perl -e 'require 5.8.0' || exit 77
 
 diffout=`diff -u /dev/null /dev/null 2>&1`
 if test x"$diffout" = x"" && test $? -eq 0; then