diff options
Diffstat (limited to 'libgo/go/image/decode_test.go')
-rw-r--r-- | libgo/go/image/decode_test.go | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/libgo/go/image/decode_test.go b/libgo/go/image/decode_test.go index 1b7db8bade4..d659867243f 100644 --- a/libgo/go/image/decode_test.go +++ b/libgo/go/image/decode_test.go @@ -11,11 +11,9 @@ import ( "os" "testing" - _ "image/bmp" _ "image/gif" _ "image/jpeg" _ "image/png" - _ "image/tiff" ) type imageTest struct { @@ -25,7 +23,7 @@ type imageTest struct { } var imageTests = []imageTest{ - {"testdata/video-001.png", "testdata/video-001.bmp", 0}, + {"testdata/video-001.png", "testdata/video-001.png", 0}, // GIF images are restricted to a 256-color palette and the conversion // to GIF loses significant image quality. {"testdata/video-001.png", "testdata/video-001.gif", 64 << 8}, @@ -33,10 +31,7 @@ var imageTests = []imageTest{ {"testdata/video-001.png", "testdata/video-001.5bpp.gif", 128 << 8}, // JPEG is a lossy format and hence needs a non-zero tolerance. {"testdata/video-001.png", "testdata/video-001.jpeg", 8 << 8}, - {"testdata/video-001.png", "testdata/video-001.png", 0}, - {"testdata/video-001.png", "testdata/video-001.tiff", 0}, - - // Test grayscale images. + // Grayscale images. {"testdata/video-005.gray.png", "testdata/video-005.gray.jpeg", 8 << 8}, {"testdata/video-005.gray.png", "testdata/video-005.gray.png", 0}, } |