summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwillson-chen <willson.chenwx@gmail.com>2020-05-06 11:40:29 +0800
committerwillson-chen <willson.chenwx@gmail.com>2020-05-06 15:01:17 +0800
commitbfb3139110277f278bdbc8eaf243a88478a9f81c (patch)
tree03552183768702bc33f2f1ea6b7d868ee8ac1b6f
parent3dd0e308cbd2c24fde2fc9e9b707181252a2de95 (diff)
downloadlibgd-bfb3139110277f278bdbc8eaf243a88478a9f81c.tar.gz
Move src/gd_color_map_test.c to tests
And improve it more like a test case.
-rw-r--r--src/Makefile.am2
-rw-r--r--src/gd_color_map_test.c27
-rw-r--r--tests/CMakeLists.txt1
-rw-r--r--tests/Makefile.am1
-rw-r--r--tests/gdcolormaplookup/.gitignore1
-rw-r--r--tests/gdcolormaplookup/CMakeLists.txt5
-rw-r--r--tests/gdcolormaplookup/Makemodule.am5
-rw-r--r--tests/gdcolormaplookup/gdcolormaplookup.c24
8 files changed, 38 insertions, 28 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 377acc0..11eda04 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;
-}
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index c99fe21..96b99f5 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -22,6 +22,7 @@ if (BUILD_TEST)
freetype
gd
gd2
+ gdcolormaplookup
gdimagearc
gdimagebrightness
gdimageclone
diff --git a/tests/Makefile.am b/tests/Makefile.am
index f342ceb..0109637 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -18,6 +18,7 @@ include fontconfig/Makemodule.am
include freetype/Makemodule.am
include gd/Makemodule.am
include gd2/Makemodule.am
+include gdcolormaplookup/Makemodule.am
include gdimagearc/Makemodule.am
include gdimagebrightness/Makemodule.am
include gdimageclone/Makemodule.am
diff --git a/tests/gdcolormaplookup/.gitignore b/tests/gdcolormaplookup/.gitignore
new file mode 100644
index 0000000..ace9067
--- /dev/null
+++ b/tests/gdcolormaplookup/.gitignore
@@ -0,0 +1 @@
+/gdcolormaplookup
diff --git a/tests/gdcolormaplookup/CMakeLists.txt b/tests/gdcolormaplookup/CMakeLists.txt
new file mode 100644
index 0000000..e4792a5
--- /dev/null
+++ b/tests/gdcolormaplookup/CMakeLists.txt
@@ -0,0 +1,5 @@
+LIST(APPEND TESTS_FILES
+ gdcolormaplookup
+)
+
+ADD_GD_TESTS()
diff --git a/tests/gdcolormaplookup/Makemodule.am b/tests/gdcolormaplookup/Makemodule.am
new file mode 100644
index 0000000..d31d64b
--- /dev/null
+++ b/tests/gdcolormaplookup/Makemodule.am
@@ -0,0 +1,5 @@
+libgd_test_programs += \
+ gdcolormaplookup/gdcolormaplookup
+
+EXTRA_DIST += \
+ gdcolormaplookup/CMakeLists.txt
diff --git a/tests/gdcolormaplookup/gdcolormaplookup.c b/tests/gdcolormaplookup/gdcolormaplookup.c
new file mode 100644
index 0000000..76cf36b
--- /dev/null
+++ b/tests/gdcolormaplookup/gdcolormaplookup.c
@@ -0,0 +1,24 @@
+/**
+ * Test API gdColorMapLookup defined in gd_color_map.h
+ * Move from src/gd_color_map_test.c
+ */
+
+#include "gd_color_map.h"
+#include "gdtest.h"
+
+int
+main(void)
+{
+ int r, g, b;
+ int i;
+ int ret;
+ for (i=0; i<GD_COLOR_MAP_X11.num_entries; i++) {
+ char *color_name = GD_COLOR_MAP_X11.entries[i].color_name;
+ ret = gdColorMapLookup(GD_COLOR_MAP_X11, color_name, &r, &g, &b);
+ gdTestAssert(ret == 1);
+ }
+ ret = gdColorMapLookup(GD_COLOR_MAP_X11, "no such name", &r, &g, &b);
+ gdTestAssert(ret == 0);
+
+ return gdNumFailures();
+}