• Nigel Tao's avatar
    image/gif: re-enable some invalid-palette tests. · 75ce3306
    Nigel Tao authored
    These tests were broken by https://go-review.googlesource.com/#/c/11227/
    which fixed the LZW encoder to reject invalid input.
    
    For TestNoPalette, the LZW encoder with a litWidth of 2 now rejects an
    input byte of 128, so we change 128 to 3, as 3 <= (1<<2 - 1).
    
    For TestPixelOutsidePaletteRange, the LZW encoder similarly rejects an
    input byte of 255. Prior to golang.org/cl/11227, the encoder (again with
    a litWidth of 2) accepted the 255 input byte, but masked it with (1<<2 -
    1), so that the 255 test case was effectively the same as the 3 test
    case. After that LZW CL, the 255 input byte is simply invalid, so we
    remove it as a test case. The test still tests pixels outside of the
    palette range, since 3 >= the length of the global palette, which is 2.
    
    Change-Id: I50be9623ace016740e34801549c15f83671103eb
    Reviewed-on: https://go-review.googlesource.com/11273Reviewed-by: 's avatarDavid Symonds <dsymonds@golang.org>
    75ce3306
Name
Last commit
Last update
api Loading commit data...
doc Loading commit data...
lib/time Loading commit data...
misc Loading commit data...
src Loading commit data...
test Loading commit data...
.gitattributes Loading commit data...
.gitignore Loading commit data...
AUTHORS Loading commit data...
CONTRIBUTING.md Loading commit data...
CONTRIBUTORS Loading commit data...
LICENSE Loading commit data...
PATENTS Loading commit data...
README.md Loading commit data...
favicon.ico Loading commit data...
robots.txt Loading commit data...