Skip Report for ext/standard/tests/file/windows_links/bug48746.phpt
Script
<?php
if(substr(PHP_OS, 0, 3) != 'WIN' ) {
die('skip windows only test');
}
include_once __DIR__ . '/common.inc';
$cmd = "mklink /?";
$ret = @exec($cmd, $output, $return_val);
if (count($output) == 0) {
die("mklink.exe not found in PATH");
}
?>
Reason
windows only test
Generated at Sun, 19 May 2013 20:27:25 +0000 (5 days ago)
|