summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/windows_mb_path/bug75063_cp1251.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/file/windows_mb_path/bug75063_cp1251.phpt')
-rw-r--r--ext/standard/tests/file/windows_mb_path/bug75063_cp1251.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/standard/tests/file/windows_mb_path/bug75063_cp1251.phpt b/ext/standard/tests/file/windows_mb_path/bug75063_cp1251.phpt
index a6bbac111e..a56fecbbe3 100644
--- a/ext/standard/tests/file/windows_mb_path/bug75063_cp1251.phpt
+++ b/ext/standard/tests/file/windows_mb_path/bug75063_cp1251.phpt
@@ -2,7 +2,7 @@
Bug #75063 Many filesystem-related functions do not work with multibyte file names, cp1251
--SKIPIF--
<?php
-include dirname(__FILE__) . DIRECTORY_SEPARATOR . "util.inc";
+include __DIR__ . DIRECTORY_SEPARATOR . "util.inc";
skip_if_not_win();
if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
@@ -16,10 +16,10 @@ default_charset=cp1251
/* This file is in cp1251. */
-include dirname(__FILE__) . DIRECTORY_SEPARATOR . "util.inc";
+include __DIR__ . DIRECTORY_SEPARATOR . "util.inc";
$dir_basename = "тест";
-$prefix = dirname(__FILE__) . DIRECTORY_SEPARATOR . "bug75063-cp1251";
+$prefix = __DIR__ . DIRECTORY_SEPARATOR . "bug75063-cp1251";
$d0 = $prefix . DIRECTORY_SEPARATOR . $dir_basename;
mkdir($prefix);
@@ -55,7 +55,7 @@ chdir($old_cwd);
/* --CLEAN-- section were the right place, but it won't accept default_charset ATM, it seems. */
$dir_basename = "тест";
-$prefix = dirname(__FILE__) . DIRECTORY_SEPARATOR . "bug75063-cp1251";
+$prefix = __DIR__ . DIRECTORY_SEPARATOR . "bug75063-cp1251";
$d0 = $prefix . DIRECTORY_SEPARATOR . $dir_basename;
$obj = scandir($d0);