mirror of
https://github.com/php/php-src.git
synced 2025-08-21 01:45:16 +02:00
- Fixed strange typos
This commit is contained in:
parent
67115cdf6a
commit
00d831fe2a
7 changed files with 28 additions and 7 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue