summaryrefslogtreecommitdiff
path: root/Build/source/libs/gd/libgd-2.1.0/tests/gdimagefilledrectangle
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/libs/gd/libgd-2.1.0/tests/gdimagefilledrectangle')
-rw-r--r--Build/source/libs/gd/libgd-2.1.0/tests/gdimagefilledrectangle/CMakeLists.txt12
-rw-r--r--Build/source/libs/gd/libgd-2.1.0/tests/gdimagefilledrectangle/bug00004.c27
-rw-r--r--Build/source/libs/gd/libgd-2.1.0/tests/gdimagefilledrectangle/bug00078.c39
-rw-r--r--Build/source/libs/gd/libgd-2.1.0/tests/gdimagefilledrectangle/bug00106_gdimagefilledrectangle.c27
4 files changed, 0 insertions, 105 deletions
diff --git a/Build/source/libs/gd/libgd-2.1.0/tests/gdimagefilledrectangle/CMakeLists.txt b/Build/source/libs/gd/libgd-2.1.0/tests/gdimagefilledrectangle/CMakeLists.txt
deleted file mode 100644
index 9a82b99ea01..00000000000
--- a/Build/source/libs/gd/libgd-2.1.0/tests/gdimagefilledrectangle/CMakeLists.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-SET(TESTS_FILES
- bug00004
- bug00078
- bug00106_gdimagefilledrectangle
-)
-
-FOREACH(test_name ${TESTS_FILES})
- add_executable(${test_name} "${test_name}.c")
- target_link_libraries (${test_name} gdTest)
- get_target_property(test_path ${test_name} LOCATION)
- ADD_TEST(${test_name} ${test_path})
-ENDFOREACH(test_name)
diff --git a/Build/source/libs/gd/libgd-2.1.0/tests/gdimagefilledrectangle/bug00004.c b/Build/source/libs/gd/libgd-2.1.0/tests/gdimagefilledrectangle/bug00004.c
deleted file mode 100644
index 594e29637d7..00000000000
--- a/Build/source/libs/gd/libgd-2.1.0/tests/gdimagefilledrectangle/bug00004.c
+++ /dev/null
@@ -1,27 +0,0 @@
-#include "gd.h"
-#include "gdtest.h"
-
-int main()
-{
- gdImagePtr im;
- int c1,c2,c3,c4,c5;
-
- im = gdImageCreateTrueColor(100,100);
- gdImageFilledRectangle(im, 2,2, 80,95, 0x50FFFFFF);
-
- c1 = gdImageGetTrueColorPixel(im, 2, 2);
- c2 = gdImageGetTrueColorPixel(im, 80, 95);
- c3 = gdImageGetTrueColorPixel(im, 80, 2);
- c4 = gdImageGetTrueColorPixel(im, 2, 95);
- c5 = gdImageGetTrueColorPixel(im, 49, 49);
-
- gdImageDestroy(im);
- if (0x005e5e5e == c1 && 0x005e5e5e == c2 &&
- 0x005e5e5e == c3 && 0x005e5e5e == c4 &&
- 0x005e5e5e == c5) {
- return 0;
- } else {
- return 1;
- }
-}
-
diff --git a/Build/source/libs/gd/libgd-2.1.0/tests/gdimagefilledrectangle/bug00078.c b/Build/source/libs/gd/libgd-2.1.0/tests/gdimagefilledrectangle/bug00078.c
deleted file mode 100644
index adf244ebca2..00000000000
--- a/Build/source/libs/gd/libgd-2.1.0/tests/gdimagefilledrectangle/bug00078.c
+++ /dev/null
@@ -1,39 +0,0 @@
-#include "gd.h"
-#include "gdtest.h"
-
-int main()
-{
- gdImagePtr im;
- int c1,c2,c3,c4,c5;
-
- im = gdImageCreateTrueColor(100,100);
- gdImageFilledRectangle(im, 2,2, 80,95, 0x50FFFFFF);
- c1 = gdImageGetTrueColorPixel(im, 2, 2);
- c2 = gdImageGetTrueColorPixel(im, 80, 95);
- c3 = gdImageGetTrueColorPixel(im, 80, 2);
- c4 = gdImageGetTrueColorPixel(im, 2, 95);
- c5 = gdImageGetTrueColorPixel(im, 49, 49);
-
- if (!(0x005e5e5e == c1 && 0x005e5e5e == c2 &&
- 0x005e5e5e == c3 && 0x005e5e5e == c4)) {
- return 1;
- }
- gdImageFilledRectangle(im, 0, 0, 99, 99, 0x0);
-
- gdImageFilledRectangle(im, 80,95, 2,2, 0x50FFFFFF);
- c1 = gdImageGetTrueColorPixel(im, 2, 2);
- c2 = gdImageGetTrueColorPixel(im, 80, 95);
- c3 = gdImageGetTrueColorPixel(im, 80, 2);
- c4 = gdImageGetTrueColorPixel(im, 2, 95);
- c5 = gdImageGetTrueColorPixel(im, 49, 49);
-
- if (!(0x005e5e5e == c1 && 0x005e5e5e == c2 &&
- 0x005e5e5e == c3 && 0x005e5e5e == c4 &&
- 0x005e5e5e == c5)) {
- return 1;
- }
-
- gdImageDestroy(im);
- return 0;
-}
-
diff --git a/Build/source/libs/gd/libgd-2.1.0/tests/gdimagefilledrectangle/bug00106_gdimagefilledrectangle.c b/Build/source/libs/gd/libgd-2.1.0/tests/gdimagefilledrectangle/bug00106_gdimagefilledrectangle.c
deleted file mode 100644
index 24f5ceb9327..00000000000
--- a/Build/source/libs/gd/libgd-2.1.0/tests/gdimagefilledrectangle/bug00106_gdimagefilledrectangle.c
+++ /dev/null
@@ -1,27 +0,0 @@
-#include "gd.h"
-#include "gdtest.h"
-
-int main()
-{
- gdImagePtr im;
- int c1,c2,c3,c4;
-
- im = gdImageCreateTrueColor(10,10);
- if (!im) {
- return 1;
- }
-
- gdImageFilledRectangle(im, 1,1, 1,1, 0x50FFFFFF);
- c1 = gdImageGetTrueColorPixel(im, 1, 1);
- c2 = gdImageGetTrueColorPixel(im, 2, 1);
- c3 = gdImageGetTrueColorPixel(im, 1, 2);
- c4 = gdImageGetTrueColorPixel(im, 2, 2);
- gdImageDestroy(im);
- if (0x005e5e5e == c1 && 0x0 == c2 &&
- 0x0 == c3 && 0x0 == c4) {
- return 0;
- } else {
- return 1;
- }
-}
-