--TEST--
Test popen() and pclose function: error conditions
--SKIPIF--
<?php
if( substr(PHP_OS03) != 'Sun')
  die(
"skip Only valid for Sun Solaris");
?>

--FILE--
<?php
/*
 * Prototype: resource popen ( string command, string mode )
 * Description: Opens process file pointer.

 * Prototype: int pclose ( resource handle );
 * Description: Closes process file pointer.
 */
$file_path dirname(__FILE__);
echo 
"*** Testing for error conditions ***\n";
var_dumppopen() );  // Zero Arguments
var_dumppopen("abc.txt") );   // Single Argument
var_dumppopen("abc.txt""rw") );   // Invalid mode Argument
var_dumppclose() );
$file_handle fopen($file_path."/popen.tmp""w");
var_dumppclose($file_handle$file_handle) );
fclose($file_handle);
var_dumppclose(1) );
echo 
"\n--- Done ---";
?>
--CLEAN--
<?php
$file_path 
dirname(__FILE__);
unlink($file_path."/popen.tmp");
?>
--EXPECTF--
*** Testing for error conditions ***

Warning: Wrong parameter count for popen() in %s on line %d
NULL

Warning: Wrong parameter count for popen() in %s on line %d
NULL
sh: abc.txt: not found
resource(%d) of type (stream)

Warning: Wrong parameter count for pclose() in %s on line %d
NULL

Warning: Wrong parameter count for pclose() in %s on line %d
NULL

Warning: pclose(): supplied argument is not a valid stream resource in %s on line %d
bool(false)

--- Done ---