File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / standard / tests / file / bug41874_2.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:03 2012 UTC (12 years, 5 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_17p0, v5_4_17, v5_3_10, HEAD
php

--TEST--
bug #41874 (Separate STDOUT and STDERR in exec functions)
--CREDITS--
Venkat Raman Don
--SKIPIF--
<?php
if(substr(PHP_OS, 0, 3) != 'WIN' ) {
		die('skip windows only test');
}
?>
--FILE--
<?php
$result = exec('cd 1:\\non_existant; dir nonexistant');
echo "$result";
?>
--EXPECT--
The system cannot find the drive specified.

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>