summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/stat_basic-win32-mb.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/file/stat_basic-win32-mb.phpt')
-rw-r--r--ext/standard/tests/file/stat_basic-win32-mb.phpt9
1 files changed, 2 insertions, 7 deletions
diff --git a/ext/standard/tests/file/stat_basic-win32-mb.phpt b/ext/standard/tests/file/stat_basic-win32-mb.phpt
index 504e0f45ea..4fd43bdbba 100644
--- a/ext/standard/tests/file/stat_basic-win32-mb.phpt
+++ b/ext/standard/tests/file/stat_basic-win32-mb.phpt
@@ -8,11 +8,6 @@ if (substr(PHP_OS, 0, 3) != 'WIN') {
?>
--FILE--
<?php
-/*
- Prototype: array stat ( string $filename );
- Description: Gives information about a file
-*/
-
$file_path = __DIR__;
require("$file_path/file.inc");
@@ -26,7 +21,7 @@ mkdir($dirname);
// stat of the dir created
$dir_stat = stat($dirname);
clearstatcache();
-sleep(2);
+sleep(1);
// creating file
$filename = "$dirname/stat_basic_私はガラスを食べられます.tmp";
@@ -34,7 +29,7 @@ $file_handle = fopen($filename, "w");
fclose($file_handle);
// stat of the file created
$file_stat = stat($filename);
-sleep(2);
+sleep(1);
// now new stat of the dir after file is created
$new_dir_stat = stat($dirname);