--TEST--
Test function_exists() function : error conditions
---INI--
--FILE--
<?php
/*
--TEST--
Test preg_split() function : basic functionality
---INI--
--FILE--
<?php
/*
--TEST--
posix_getcwd(): Basic tests
---SKIP--
+--SKIPIF--
<?php
if (!extension_loaded('posix')) die('skip - POSIX extension not loaded');
if (!function_exists('posix_getcwd')) die('skip posix_getcwd() not found');
--TEST--
posix_getgrnam(): Basic tests
---SKIP--
+--SKIPIF--
<?php
if (!extension_loaded('posix')) die('skip - POSIX extension not loaded');
if (!function_exists('posix_getgrnam')) die('skip posix_getgrnam() not found');
--TEST--
posix_getpwnam(): Basic tests
---SKIP--
+--SKIPIF--
<?php
if (!extension_loaded('posix')) die('skip - POSIX extension not loaded');
if (!function_exists('posix_getpwnam')) die('skip posix_getpwnam() not found');
--TEST--
posix_getrlimit(): Basic tests
---SKIP--
+--SKIPIF--
<?php
if (!extension_loaded('posix')) die('skip - POSIX extension not loaded');
if (!function_exists('posix_getrlimit')) die('skip posix_getrlimit() not found');
--TEST--
posix_initgroups(): Basic tests
---SKIP--
+--SKIPIF--
<?php
if (!extension_loaded('posix')) die('skip - POSIX extension not loaded');
if (!function_exists('posix_initgroups')) die('skip posix_initgroups() not found');
--TEST--
posix_isatty(): Basic tests
---SKIP--
+--SKIPIF--
<?php
if (!extension_loaded('posix')) die('skip - POSIX extension not loaded');
if (!function_exists('posix_isatty')) die('skip posix_isatty() not found');
--TEST--
posix_mknod(): Basic tests
---SKIP--
+--SKIPIF--
<?php
if (!extension_loaded('posix')) die('skip - POSIX extension not loaded');
if (!function_exists('posix_mknod')) die('skip posix_mknod() not found');
--TEST--
Bug #40709 (array_reduce() behaves strange with one item stored arrays)
---SKIPIF--
--FILE--
<?php
function CommaSeperatedList($a, $b) {
--TEST--
Test addslashes() function : basic functionality
---INI--
--FILE--
<?php
/* Prototype : string addslashes ( string $str )
unicode(17) "Are you \"JOHN\"?"
unicode(19) "c:\\php\\addslashes"
unicode(12) "hello\0world"
-Done
\ No newline at end of file
+Done
--TEST--
Test addslashes() function : error conditions
---INI--
--FILE--
<?php
/* Prototype : string addslashes ( string $str )
--TEST--
Test addslashes() function : usage variations - non-string type argument
---INI--
--FILE--
<?php
/* Prototype : string addslashes ( string $str )
--TEST--
Test addslashes() function : usage variations - strings with characters to be backslashed
---INI--
--FILE--
<?php
/* Prototype : string addslashes ( string $str )
-- Iteration 34 --
unicode(0) ""
-Done
\ No newline at end of file
+Done
--TEST--
Test stripcslashes() function : usage variations - non-string type argument
---INI--
--FILE--
<?php
/* Prototype : string stripcslashes ( string $str )
string(0) ""
-- Iteration 26 --
string(0) ""
-===DONE===
\ No newline at end of file
+===DONE===
--TEST--
Test wordwrap() function : usage variations - unexptected values for break argument
---INI--
--FILE--
<?php
/* Prototype : string wordwrap ( string $str [, int $width [, string $break [, bool $cut]]] )
--TEST--
Ensure that ArrayObject acts like an array
---SKIPIF--
--FILE--
<?php