Skip to content

Commit

Permalink
Add tests for "-m COLORMAP -d DITHER"
Browse files Browse the repository at this point in the history
  • Loading branch information
akinomyoga committed Aug 25, 2020
1 parent 4e15e19 commit d2bdafb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Makefile.am
Expand Up @@ -16,6 +16,9 @@ seq2gif_CFLAGS = $(MAYBE_COVERAGE)

test: all
./seq2gif -i tests/data/sl.tty -o /dev/null
for dither in none fs; do for map in rgb332 xterm256; do \
./seq2gif -d $$dither -m $$map -i tests/data/ls.tty -o /dev/null; \
done; done

coveralls: test
coveralls -E '.*\.h' -e tests -e glyph -e m4
Expand Down
3 changes: 3 additions & 0 deletions Makefile.in
Expand Up @@ -906,6 +906,9 @@ uninstall-am: uninstall-binPROGRAMS

test: all
./seq2gif -i tests/data/sl.tty -o /dev/null
for dither in none fs; do for map in rgb332 xterm256; do \
./seq2gif -d $$dither -m $$map -i tests/data/ls.tty -o /dev/null; \
done; done

coveralls: test
coveralls -E '.*\.h' -e tests -e glyph -e m4
Expand Down

0 comments on commit d2bdafb

Please sign in to comment.