diff options
| author | Derick Rethans <derick@php.net> | 2002-10-11 10:08:42 +0000 |
|---|---|---|
| committer | Derick Rethans <derick@php.net> | 2002-10-11 10:08:42 +0000 |
| commit | bbf6b5fee4f3f7f137784bddeaff228e1ad4eb3d (patch) | |
| tree | f2f41ba0fede73f081a03dffafc037cba540af82 /ext | |
| parent | 7713b4097d1c90b460ae123e44c5a23d68ae7638 (diff) | |
| download | php-git-bbf6b5fee4f3f7f137784bddeaff228e1ad4eb3d.tar.gz | |
- Skip if an external lib gd is used (which always has this crash-bug)
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/gd/tests/bug19266.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/gd/tests/bug19266.phpt b/ext/gd/tests/bug19266.phpt index 457d6c8764..b2e8b4a557 100644 --- a/ext/gd/tests/bug19266.phpt +++ b/ext/gd/tests/bug19266.phpt @@ -1,7 +1,7 @@ --TEST-- gdimagefill() function (Bug #19366 (in bundled libgd)) --SKIPIF-- -<?php if (!extension_loaded('gd')) die("skip\n"); ?> +<?php if (!extension_loaded('gd') || !HAVE_BUNDLED_GD) die("skip\n"); ?> --POST-- --GET-- --INI-- |
