Return to bug41874.phpt CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / standard / tests / file |
1.1 misho 1: --TEST-- 2: bug #41874 (Separate STDOUT and STDERR in exec functions) 3: --SKIPIF-- 4: <?php 5: if(substr(PHP_OS, 0, 3) != 'WIN' ) die('skip windows only test'); 6: ?> 7: --FILE-- 8: <?php 1.1.1.2 ! misho 9: $result = exec('cd 1:\non_existent; dir nonexistent'); 1.1 misho 10: echo "$result"; 1.1.1.2 ! misho 11: system('cd 1:\non_existent; dir nonexistent'); 1.1 misho 12: ?> 13: --EXPECT-- 14: The system cannot find the drive specified. 15: The system cannot find the drive specified.