diff options
author | Michael Drake <tlsa@netsurf-browser.org> | 2022-02-26 12:02:32 +0000 |
---|---|---|
committer | Michael Drake <tlsa@netsurf-browser.org> | 2022-02-26 12:03:26 +0000 |
commit | dde30d3d4134c46439fb1984eeb88ac2d843fd60 (patch) | |
tree | 055414bca318948be079c57878d9161a6103f35e /test | |
parent | d7a746a7af4265825add1d6ecd44d0699c8d238d (diff) | |
download | libnsgif-dde30d3d4134c46439fb1984eeb88ac2d843fd60.tar.gz |
Test: Rename nsgif test utilitiy.
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile | 2 | ||||
-rw-r--r-- | test/nsgif.c (renamed from test/decode_gif.c) | 0 | ||||
-rwxr-xr-x | test/runtest.sh | 2 |
3 files changed, 2 insertions, 2 deletions
diff --git a/test/Makefile b/test/Makefile index f067d81..a578aef 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,3 +1,3 @@ -DIR_TEST_ITEMS := decode_gif:decode_gif.c +DIR_TEST_ITEMS := nsgif:nsgif.c include $(NSBUILD)/Makefile.subdir diff --git a/test/decode_gif.c b/test/nsgif.c index 173f70c..173f70c 100644 --- a/test/decode_gif.c +++ b/test/nsgif.c diff --git a/test/runtest.sh b/test/runtest.sh index 05665a1..5c22709 100755 --- a/test/runtest.sh +++ b/test/runtest.sh @@ -23,7 +23,7 @@ gifdecode() OUTF=$(basename ${1} .gif) CMPF=$(dirname ${1})/${OUTF}.ppm echo "GIF:${1}" >> ${TEST_LOG} - ${TEST_PATH}/test_decode_gif ${1} ${TEST_OUT}/${OUTF}.ppm 2>> ${TEST_LOG} + ${TEST_PATH}/test_nsgif ${1} ${TEST_OUT}/${OUTF}.ppm 2>> ${TEST_LOG} ECODE=$? echo "Exit code:${ECODE}" >> ${TEST_LOG} |