summaryrefslogtreecommitdiff
path: root/tests
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 /tests
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 'tests')
-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
6 files changed, 37 insertions, 0 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index d239f49..51f09c4 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -23,6 +23,7 @@ if (BUILD_TEST)
freetype
gd
gd2
+ gdcolormaplookup
gdimagearc
gdimagebrightness
gdimageclone
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 3630810..51177a6 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -19,6 +19,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();
+}