diff options
author | andy wharmby <wharmby@php.net> | 2009-09-15 21:44:08 +0000 |
---|---|---|
committer | andy wharmby <wharmby@php.net> | 2009-09-15 21:44:08 +0000 |
commit | e509cc4283516a8783f711624d765e4c0703b4e3 (patch) | |
tree | ea00c703ab499716d683cb973f7421d8c2155cde | |
parent | d032060ea8db0a45d4d5001904081478d69d1c38 (diff) | |
download | php-git-e509cc4283516a8783f711624d765e4c0703b4e3.tar.gz |
Fix SKIPIF sections
-rwxr-xr-x | ext/gd/tests/imagerectangle_basic.phpt | 2 | ||||
-rwxr-xr-x | ext/gd/tests/imagerectangle_error2.phpt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/gd/tests/imagerectangle_basic.phpt b/ext/gd/tests/imagerectangle_basic.phpt index 0574ad35cb..f706ee7ab6 100755 --- a/ext/gd/tests/imagerectangle_basic.phpt +++ b/ext/gd/tests/imagerectangle_basic.phpt @@ -5,7 +5,7 @@ Ivan Rosolen <contato [at] ivanrosolen [dot] com> #testfest PHPSP on 2009-06-30
--SKIPIF--
<?php
-if ( ! extension_loaded('gd') ) die( 'GD not present; skipping test' );
+if ( ! extension_loaded('gd') ) die( 'skip GD not present; skipping test' );
?>
--FILE--
<?php
diff --git a/ext/gd/tests/imagerectangle_error2.phpt b/ext/gd/tests/imagerectangle_error2.phpt index c6e740214a..5fc1914ad0 100755 --- a/ext/gd/tests/imagerectangle_error2.phpt +++ b/ext/gd/tests/imagerectangle_error2.phpt @@ -5,7 +5,7 @@ Ivan Rosolen <contato [at] ivanrosolen [dot] com> #testfest PHPSP on 2009-06-30
--SKIPIF--
<?php
-if ( ! extension_loaded('gd') ) die( 'GD not present; skipping test' );
+if ( ! extension_loaded('gd') ) die( 'skip GD not present; skipping test' );
?>
--FILE--
<?php
|