Merge pull request #636 from willson-chen/mv_gd_color_map_test_to_tests

Move src/gd_color_map_test.c to tests
master
Pierre Joye 2021-08-26 19:11:15 +07:00 committed by GitHub
commit de563c2520
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 38 additions and 28 deletions

View File

@ -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

View File

@ -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;
}

View File

@ -23,6 +23,7 @@ if (BUILD_TEST)
freetype
gd
gd2
gdcolormaplookup
gdimagearc
gdimagebrightness
gdimageclone

View File

@ -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

1
tests/gdcolormaplookup/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/gdcolormaplookup

View File

@ -0,0 +1,5 @@
LIST(APPEND TESTS_FILES
gdcolormaplookup
)
ADD_GD_TESTS()

View File

@ -0,0 +1,5 @@
libgd_test_programs += \
gdcolormaplookup/gdcolormaplookup
EXTRA_DIST += \
gdcolormaplookup/CMakeLists.txt

View File

@ -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();
}