From fdeb1b3b12fd5b84e3b9a83639e9f619382a7052 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Bu=CC=88nemann?= Date: Fri, 27 May 2016 01:25:35 +0200 Subject: [PATCH] Test gifload in make check and on Travis CI --- .travis.yml | 2 +- test/images/trans-x.png | Bin 0 -> 436 bytes test/test_formats.sh | 8 ++++++++ 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 test/images/trans-x.png diff --git a/.travis.yml b/.travis.yml index e10ef52c..cc454de8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ before_install: - sudo apt-get install swig libmagick++-dev bc - sudo apt-get install libcfitsio3-dev libgsl0-dev libmatio-dev - sudo apt-get install liborc-0.4-dev liblcms2-dev libpoppler-glib-dev - - sudo apt-get install librsvg2-dev + - sudo apt-get install librsvg2-dev libgif-dev before_script: - ./bootstrap.sh - ./configure diff --git a/test/images/trans-x.png b/test/images/trans-x.png new file mode 100644 index 0000000000000000000000000000000000000000..627f80be3ede672528900a4203fbf67cb72545c0 GIT binary patch literal 436 zcmeAS@N?(olHy`uVBq!ia0vp^DImSw*Sy6T_y`;W%2yCcICPi$GeaS_+{HBaiNT)cgD@r>+iI>mt@GbX6czq7!| zaFUhqr#$b=fm%mguX0Lm{i+gb^xB-BC1n!=`V?O9ScA>3?3EQnqk zb zlKo=zZad#Qpk}F-jiK?c1j4xr>q`l--~Y) z=I<$r_Bpvm;rW{C`B~@R>#qIe&3AqF_OEY$q`%f%YkT!gw3s;yBRsGe7+$>PuZYtO TGIZE(021|d^>bP0l+XkKE9bp* literal 0 HcmV?d00001 diff --git a/test/test_formats.sh b/test/test_formats.sh index 631b4fbc..130f0dcb 100755 --- a/test/test_formats.sh +++ b/test/test_formats.sh @@ -15,6 +15,10 @@ poppler_ref=$test_images/blankpage.png rsvg=$test_images/blankpage.svg rsvg_ref=$test_images/blankpage.png +# giflib / gifload reference image +giflib=$test_images/trans-x.gif +giflib_ref=$test_images/trans-x.png + # the matlab image and reference image matlab=$test_images/sample.mat matlab_ref=$test_images/sample.png @@ -230,6 +234,10 @@ if test_supported svgload; then test_loader $rsvg_ref $rsvg svgload fi +if test_supported gifload; then + test_loader $giflib_ref $giflib gifload +fi + if test_supported matload; then test_loader $matlab_ref $matlab matlab fi