diff options
author | Jim Meyering <jim@meyering.net> | 2000-07-23 11:07:05 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-07-23 11:07:05 +0000 |
commit | 2bfbe02e2feb7d9fe51ae3d31707bdd17eef36f3 (patch) | |
tree | 3725d488417f9aca8d1a0dfec502512f1ede2238 /tests | |
parent | 92d2c54ae9de78190c028969a351a79f527b735c (diff) | |
download | coreutils-2bfbe02e2feb7d9fe51ae3d31707bdd17eef36f3.tar.xz |
Rename tests (and hence files) to have a short
enough prefix so that they're not truncated on 8+3 file systems.
Reported by Eli Zaretskii.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/head/Test.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/head/Test.pm b/tests/head/Test.pm index ce93b437c..b278dbcf2 100644 --- a/tests/head/Test.pm +++ b/tests/head/Test.pm @@ -43,10 +43,10 @@ my @tv = ( # 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], +['no-oct-1', '-08', "\n"x12, "\n"x8, 0], +['no-oct-2', '-010', "\n"x12, "\n"x10, 0], +['no-oct-3', '-n 08', "\n"x12, "\n"x8, 0], +['no-oct-4', '-c 08', "\n"x12, "\n"x8, 0], ); sub test_vector |