diff options
author | Christoph M. Becker <cmbecker69@gmx.de> | 2017-01-25 15:44:48 +0100 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2017-01-25 15:49:16 +0100 |
commit | ac98a8c678b5f590c66d79342f5afdd6571e8a5c (patch) | |
tree | b7ef6258c4068049c1a9c8798ed5d6ae54e49501 /tests/gdimagefile | |
parent | 1f136c5f169fafbbb017704724505370ae97c6ae (diff) | |
download | libgd-ac98a8c678b5f590c66d79342f5afdd6571e8a5c.tar.gz |
No need to skip these formats anmore
Diffstat (limited to 'tests/gdimagefile')
-rw-r--r-- | tests/gdimagefile/gdnametest.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/tests/gdimagefile/gdnametest.c b/tests/gdimagefile/gdnametest.c index e87457b..b6b7c56 100644 --- a/tests/gdimagefile/gdnametest.c +++ b/tests/gdimagefile/gdnametest.c @@ -69,13 +69,10 @@ do_test() { {"img.wbmp", 0, 1, 0}, {"img.bmp", 0, 1, 0}, {"img-ref.xpm", 0, 0, 1}, - - // These break the test so I'm skipping them since the point - // of this test is not those loaders. - {"img-ref.xbm", 0, -1, 1}, - {"img-ref.tga", 0, -1, 1}, - {"img.webp", 0, -1, 0}, - {"img.tiff", 0, -1, 0}, + {"img-ref.xbm", 0, 1, 1}, + {"img-ref.tga", 0, 1, 1}, + {"img.webp", 10, 1, 0}, + {"img.tiff", 0, 1, 0}, {NULL, 0} }; |