• 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
..
archive Loading commit data...
bufio Loading commit data...
builtin Loading commit data...
bytes Loading commit data...
cmd Loading commit data...
compress Loading commit data...
container Loading commit data...
crypto Loading commit data...
database/sql Loading commit data...
debug Loading commit data...
encoding Loading commit data...
errors Loading commit data...
expvar Loading commit data...
flag Loading commit data...
fmt Loading commit data...
go Loading commit data...
hash Loading commit data...
html Loading commit data...
image Loading commit data...
index/suffixarray Loading commit data...
internal Loading commit data...
io Loading commit data...
log Loading commit data...
math Loading commit data...
mime Loading commit data...
net Loading commit data...
os Loading commit data...
path Loading commit data...
reflect Loading commit data...
regexp Loading commit data...
runtime Loading commit data...
sort Loading commit data...
strconv Loading commit data...
strings Loading commit data...
sync Loading commit data...
syscall Loading commit data...
testing Loading commit data...
text Loading commit data...
time Loading commit data...
unicode Loading commit data...
unsafe Loading commit data...
Make.dist Loading commit data...
all.bash Loading commit data...
all.bat Loading commit data...
all.rc Loading commit data...
androidtest.bash Loading commit data...
bootstrap.bash Loading commit data...
buildall.bash Loading commit data...
clean.bash Loading commit data...
clean.bat Loading commit data...
clean.rc Loading commit data...
iostest.bash Loading commit data...
make.bash Loading commit data...
make.bat Loading commit data...
make.rc Loading commit data...
nacltest.bash Loading commit data...
race.bash Loading commit data...
race.bat Loading commit data...
run.bash Loading commit data...
run.bat Loading commit data...
run.rc Loading commit data...