summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPierre Joye <pierre.php@gmail.com>2021-08-26 19:11:15 +0700
committerGitHub <noreply@github.com>2021-08-26 19:11:15 +0700
commitde563c252060d3405537ecef8246e9c1ad0797a8 (patch)
tree364c51d0b364ad02e8c560feacb0e637ade70f04 /src
parentd34c931cb81b3d0fde630f6cbd0ed6e5bda437ac (diff)
parentbfb3139110277f278bdbc8eaf243a88478a9f81c (diff)
downloadlibgd-de563c252060d3405537ecef8246e9c1ad0797a8.tar.gz
Merge pull request #636 from willson-chen/mv_gd_color_map_test_to_tests
Move src/gd_color_map_test.c to tests
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am2
-rw-r--r--src/gd_color_map_test.c27
2 files changed, 1 insertions, 28 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 076aabd..dbe9243 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,7 +1,7 @@
## Process this file with automake to produce Makefile.in -*-Makefile-*-
bin_PROGRAMS = gdcmpgif
-check_PROGRAMS = gifanimtest gd_color_map_test
+check_PROGRAMS = gifanimtest
if HAVE_LIBPNG
bin_PROGRAMS += gdtopng pngtogd webpng
diff --git a/src/gd_color_map_test.c b/src/gd_color_map_test.c
deleted file mode 100644
index 26e08bd..0000000
--- a/src/gd_color_map_test.c
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include <stdio.h>
-#include "gd.h"
-#include "gd_color_map.h"
-
-int
-main(void)
-{
- int r, g, b;
- int i;
- for (i=0; i<GD_COLOR_MAP_X11.num_entries; i++) {
- char *color_name = GD_COLOR_MAP_X11.entries[i].color_name;
- if (gdColorMapLookup(GD_COLOR_MAP_X11, color_name, &r, &g, &b)) {
- printf("%s found: #%02x%02x%02x\n", color_name, r, g, b);
- } else {
- fprintf(stderr, "%s not found\n", color_name);
- return 1;
- }
- }
- if (gdColorMapLookup(GD_COLOR_MAP_X11, "no such name", &r, &g, &b)) {
- return 2;
- }
- return 0;
-}