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 Fri, 17 May 2013 23:23:52 +0000 (30 hours ago)
|