diff options
author | Jim Meyering <jim@meyering.net> | 1997-01-13 04:20:54 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1997-01-13 04:20:54 +0000 |
commit | 9b9213f1227d06646d8ab49389c7e23ad24521ab (patch) | |
tree | d74538865b05692eceba4e7064130ad52a4f098c | |
parent | 4c3d7d6a8b1605493348ef16929f9845e764e696 (diff) | |
download | coreutils-9b9213f1227d06646d8ab49389c7e23ad24521ab.tar.xz |
Rename tests so that the associated files
have names that are distinct even on filesystems on which file
names are case insensitive.
-rwxr-xr-x | tests/cut/Test.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/cut/Test.pm b/tests/cut/Test.pm index bfbd6da48..8a15c2c35 100755 --- a/tests/cut/Test.pm +++ b/tests/cut/Test.pm @@ -49,13 +49,13 @@ my @tv = ( # You must specify bytes or fields (or chars) ['z', '', ":\n", "", 1], # Empty field list -['A', '-f \'\'', ":\n", "", 1], +['empty-fl', '-f \'\'', ":\n", "", 1], # Missing field list -['B', '-f', ":\n", "", 1], +['missing-fl', '-f', ":\n", "", 1], # Empty byte list -['C', '-b \'\'', ":\n", "", 1], +['empty-bl', '-b \'\'', ":\n", "", 1], # Missing byte list -['D', '-b', ":\n", "", 1], +['missing-bl', '-b', ":\n", "", 1], ); sub test_vector |