summaryrefslogtreecommitdiff
path: root/Build/source/libs/gd/libgd-src/tests/gdimagefilledrectangle/bug00106_gdimagefilledrectangle.c
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/libs/gd/libgd-src/tests/gdimagefilledrectangle/bug00106_gdimagefilledrectangle.c')
-rw-r--r--Build/source/libs/gd/libgd-src/tests/gdimagefilledrectangle/bug00106_gdimagefilledrectangle.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/Build/source/libs/gd/libgd-src/tests/gdimagefilledrectangle/bug00106_gdimagefilledrectangle.c b/Build/source/libs/gd/libgd-src/tests/gdimagefilledrectangle/bug00106_gdimagefilledrectangle.c
deleted file mode 100644
index a6f5c06959b..00000000000
--- a/Build/source/libs/gd/libgd-src/tests/gdimagefilledrectangle/bug00106_gdimagefilledrectangle.c
+++ /dev/null
@@ -1,26 +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;
- }
-}