- Fixed strange typos

This commit is contained in:
Felipe Pena 2008-12-03 20:43:22 +00:00
parent 67115cdf6a
commit 00d831fe2a
7 changed files with 28 additions and 7 deletions

View file

@ -1,7 +1,10 @@
--TEST-- --TEST--
posix_getcwd(): Basic tests posix_getcwd(): Basic tests
--SKIP-- --SKIP--
<?php if (!posix_mknod('posix_getcwd')) die('skip posix_getcwd() not found'); ?> <?php
if (!extension_loaded('posix')) die('skip - POSIX extension not loaded');
if (!function_exists('posix_getcwd')) die('skip posix_getcwd() not found');
?>
--FILE-- --FILE--
<?php <?php

View file

@ -1,7 +1,10 @@
--TEST-- --TEST--
posix_getgrnam(): Basic tests posix_getgrnam(): Basic tests
--SKIP-- --SKIP--
<?php if (!function_exists('posix_getgrnam')) die('skip posix_getgrnam() not found'); ?> <?php
if (!extension_loaded('posix')) die('skip - POSIX extension not loaded');
if (!function_exists('posix_getgrnam')) die('skip posix_getgrnam() not found');
?>
--FILE-- --FILE--
<?php <?php

View file

@ -1,7 +1,10 @@
--TEST-- --TEST--
posix_getpwnam(): Basic tests posix_getpwnam(): Basic tests
--SKIP-- --SKIP--
<?php if (!function_exists('posix_getpwnam')) die('skip posix_getpwnam() not found'); ?> <?php
if (!extension_loaded('posix')) die('skip - POSIX extension not loaded');
if (!function_exists('posix_getpwnam')) die('skip posix_getpwnam() not found');
?>
--FILE-- --FILE--
<?php <?php

View file

@ -1,7 +1,10 @@
--TEST-- --TEST--
posix_getrlimit(): Basic tests posix_getrlimit(): Basic tests
--SKIP-- --SKIP--
<?php if (!function_exists('posix_getrlimit')) die('skip posix_getrlimit() not found'); ?> <?php
if (!extension_loaded('posix')) die('skip - POSIX extension not loaded');
if (!function_exists('posix_getrlimit')) die('skip posix_getrlimit() not found');
?>
--FILE-- --FILE--
<?php <?php

View file

@ -1,7 +1,10 @@
--TEST-- --TEST--
posix_initgroups(): Basic tests posix_initgroups(): Basic tests
--SKIP-- --SKIP--
<?php if (!function_exists('posix_initgroups')) die('skip posix_initgroups() not found'); ?> <?php
if (!extension_loaded('posix')) die('skip - POSIX extension not loaded');
if (!function_exists('posix_initgroups')) die('skip posix_initgroups() not found');
?>
--FILE-- --FILE--
<?php <?php

View file

@ -1,7 +1,10 @@
--TEST-- --TEST--
posix_isatty(): Basic tests posix_isatty(): Basic tests
--SKIP-- --SKIP--
<?php if (!posix_mknod('posix_isatty')) die('skip posix_isatty() not found'); ?> <?php
if (!extension_loaded('posix')) die('skip - POSIX extension not loaded');
if (!function_exists('posix_isatty')) die('skip posix_isatty() not found');
?>
--FILE-- --FILE--
<?php <?php

View file

@ -1,7 +1,10 @@
--TEST-- --TEST--
posix_mknod(): Basic tests posix_mknod(): Basic tests
--SKIP-- --SKIP--
<?php if (!posix_mknod('posix_mknod')) die('skip posix_mknod() not found'); ?> <?php
if (!extension_loaded('posix')) die('skip - POSIX extension not loaded');
if (!function_exists('posix_mknod')) die('skip posix_mknod() not found');
?>
--FILE-- --FILE--
<?php <?php