]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Change comments: say bug present up to coreutils-6.9, not fixed in 6.10.
authorJim Meyering <meyering@rho.meyering.net>
Sat, 1 Dec 2007 15:18:00 +0000 (16:18 +0100)
committerJim Meyering <meyering@redhat.com>
Sat, 1 Dec 2007 15:22:47 +0000 (16:22 +0100)
* tests/cut/Test.pm: Adjust comment.
* tests/misc/cut: Likewise.
* tests/misc/ls-misc: Likewise.
* tests/misc/od: Likewise.
* tests/misc/stty-invalid: Likewise.
* tests/tr/Test.pm: Likewise.

ChangeLog
tests/cut/Test.pm
tests/misc/cut
tests/misc/ls-misc
tests/misc/od
tests/misc/stty-invalid
tests/tr/Test.pm

index 83ca215da0827701c6865e206b6ad1aec8aeff70..66034cb56ec20a8813f4654f8d7c37ecba875ac8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2007-12-01  Jim Meyering  <meyering@rho.meyering.net>
+
+       Change comments: say bug present up to coreutils-6.9, not fixed in 6.10.
+       * tests/cut/Test.pm: Adjust comment.
+       * tests/misc/cut: Likewise.
+       * tests/misc/ls-misc: Likewise.
+       * tests/misc/od: Likewise.
+       * tests/misc/stty-invalid: Likewise.
+       * tests/tr/Test.pm: Likewise.
+
 2007-11-29  Paul Eggert  <eggert@cs.ucla.edu>
 
        Add a test for cp -p and existing file permissions.
index 6990b8ffe57bc8b1f9f0d7f142bd9ee5f70c0d19..b5e3d08ccac612726c3d4398d8c14ab345be5337 100644 (file)
@@ -111,7 +111,7 @@ my @tv = (
 ['od-overlap4', '-b1-3,2-3 --output-d=:', "abcd\n",  "abc\n",  0],
 ['od-overlap5', '-b1-3,1-4 --output-d=:', "abcde\n",  "abcd\n",        0],
 
-# None of the following invalid ranges provoked an error before coreutils-6.10.
+# None of the following invalid ranges provoked an error up to coreutils-6.9.
 ['inval1',     '-f 2-0',       '',             '',             1],
 ['inval2',     '-f -',         '',             '',             1],
 ['inval3',     '-f 4,-',       '',             '',             1],
index 0a8ae3ae601d5918921c0fd0b5670b5f1b3def30..2fc4bed0537fb7047eb6d7bd63e83ab8b246bb59 100755 (executable)
@@ -46,11 +46,11 @@ my @Tests =
    # Provoke a double-free in cut from coreutils-6.7.
    ['dbl-free', '-f2-', {IN=>{f=>'x'}}, {IN=>{g=>'y'}}, {OUT=>"x\ny\n"}],
 
-   # This failed (as it should) even before coreutils-6.10,
-   # but cut from 6.10 produces a more useful diagnostic.
+   # This failed (as it should) even before coreutils-6.9.90,
+   # but cut from 6.9.90 produces a more useful diagnostic.
    ['zero-1', '-b0',   {ERR=>$diag}, {EXIT => 1} ],
 
-   # Before coreutils-6.10, specifying a range of 0-2 was not an error.
+   # Up to coreutils-6.9, specifying a range of 0-2 was not an error.
    # It was treated just like "-2".
    ['zero-2', '-f0-2', {ERR=>$diag}, {EXIT => 1} ],
   );
index 1e4f327f989f76d8e4752e5878c35b9dd6ead6d8..9e07065774e347c26721d19a7d9122fec199355b 100755 (executable)
@@ -138,11 +138,11 @@ my @Tests =
                                 {OUT => "\e[0m\e[01;36md\e[0m\@\n\e[m"},
                                  $slink_d, $unlink_d],
 
-     # Test for a bug fixed in coreutils-6.10.
+     # Test for a bug fixed after coreutils-6.9.
      ['sl-target', '--color=always d',
       {OUT => "\e[0m\e[01;34mX\e[0m\n\e[m"}, $target, $target2],
 
-     # Test for another bug fixed in coreutils-6.10.
+     # Test for another bug fixed after coreutils-6.9.
      # This one bites only for a system/file system with d_type support.
      ['sl-dangle', '--color=always d',
       {OUT => "\e[0m\e[40;31;01mX\e[0m\n\e[m"},
index d827c2b078d6029e8026f55b7c0c0f40aec4f343..bf41c3846561110506329750ef45f77fb5199f88 100755 (executable)
@@ -59,7 +59,7 @@ my $proc_file_byte_count = $len;
 my @Tests =
     (
      # Skip the exact length of the input file.
-     # Before coreutils-6.10, this would ignore the "-j 1".
+     # Up to coreutils-6.9, this would ignore the "-j 1".
      ['j-bug1', '-c -j 1 -An', {IN=>{g=>'a'}}, {OUT=>''}],
      ['j-bug2', '-c -j 2 -An', {IN=>{g=>'a'}}, {IN=>{h=>'b'}}, {OUT=>''}],
      # Skip the sum of the lengths of the first three inputs.
index a2a636d06533fdbdf126f5aa53ef3074083111de..d351594750b079a57f8757940562869c195bda78 100755 (executable)
@@ -30,14 +30,14 @@ fail=0
 saved_state=`stty -g` || fail=1
 stty $saved_state || fail=1
 
-# Before coreutils-6.10, if stty were given an argument with 35 colons
+# Before coreutils-6.9.90, if stty were given an argument with 35 colons
 # separating 36 hexadecimal strings, stty would fail to diagnose as invalid
 # any number that was out of range as long as sscanf happened to
 # overflow/wrap it back into the range of the corresponding type (either
 # tcflag_t or cc_t).
 
-# For each of the following, before 6.10, stty would fail to
-# diagnose the error on at least Solaris 10.
+# For each of the following, with coreutils-6.9 and earlier,
+# stty would fail to diagnose the error on at least Solaris 10.
 hex_2_64=10000000000000000
 stty `echo $saved_state |sed 's/^[^:]*:/'$hex_2_64:/`     2>/dev/null && fail=1
 stty `echo $saved_state |sed 's/:[0-9a-f]*$/:'$hex_2_64/` 2>/dev/null && fail=1
index 804c5cb388aafbd822d90fdaee1dbe41276e4249..7b25a156e9724f73a8f35c4b774fa9d8acea5922 100644 (file)
@@ -133,7 +133,7 @@ my @tv = (
 # From Glenn Fowler.
 ['fowler-1', q|ah -H|, 'aha', '-H-', 0],
 
-# Prior to coreutils-6.10, this would provoke a failed assertion.
+# Up to coreutils-6.9, this would provoke a failed assertion.
 ['no-abort-1', '-c ' . q|a '[b*256]'|, 'abc', 'abb', 0],
 
 # Up to coreutils-6.9, tr rejected an unmatched [:lower:] or [:upper:] in SET1.