From 12bf65f9155fab98bfd5b3038186f057c7f62a4f Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 12 May 2000 20:31:39 +0000 Subject: Interpret as decimal, even if number starts with 0. --- tests/head/Test.pm | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'tests/head') diff --git a/tests/head/Test.pm b/tests/head/Test.pm index 5259bafe9..ce93b437c 100644 --- a/tests/head/Test.pm +++ b/tests/head/Test.pm @@ -40,6 +40,13 @@ my @tv = ( # Make sure we don't break like AIX 4.3.1 on files with \0 in them. ['null-1', '', "a\0a\n", "a\0a\n", 0], + +# Make sure counts are interpreted as decimal. +# Before 2.0f, these would have been interpreted as octal +['no-octal-1', '-08', "\n"x12, "\n"x8, 0], +['no-octal-2', '-010', "\n"x12, "\n"x10, 0], +['no-octal-3', '-n 08', "\n"x12, "\n"x8, 0], +['no-octal-4', '-c 08', "\n"x12, "\n"x8, 0], ); sub test_vector -- cgit v1.2.3-70-g09d2