From: Jim Meyering Date: Fri, 12 May 2000 20:31:39 +0000 (+0000) Subject: Interpret as decimal, even if number starts with 0. X-Git-Tag: FILEUTILS-4_0s~61 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=12bf65f9155fab98bfd5b3038186f057c7f62a4f;p=thirdparty%2Fcoreutils.git Interpret as decimal, even if number starts with 0. --- diff --git a/tests/head/Test.pm b/tests/head/Test.pm index 5259bafe9a..ce93b437ca 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