summaryrefslogtreecommitdiff
path: root/tests/lang/bug38579.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/bug38579.phpt')
-rwxr-xr-xtests/lang/bug38579.phpt16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/lang/bug38579.phpt b/tests/lang/bug38579.phpt
deleted file mode 100755
index 445296c222..0000000000
--- a/tests/lang/bug38579.phpt
+++ /dev/null
@@ -1,16 +0,0 @@
---TEST--
-Bug #38579 (include_once() may include the same file twice)
---SKIPIF--
-<?php
-if (substr(PHP_OS, 0, 3) != 'WIN') {
- die('skip only for Windows');
-}
-?>
---FILE--
-<?php
-$file = dirname(__FILE__)."/bug38579.inc";
-include_once(strtolower($file));
-include_once(strtoupper($file));
-?>
---EXPECT--
-ok