Annotation of embedaddon/php/tests/lang/bug38579.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: Bug #38579 (include_once() may include the same file twice)
                      3: --SKIPIF--
                      4: <?php
                      5: if (substr(PHP_OS, 0, 3) != 'WIN') {
                      6:     die('skip only for Windows');
                      7: }
                      8: ?>
                      9: --FILE--
                     10: <?php
                     11: $file = dirname(__FILE__)."/bug38579.inc";
                     12: include_once(strtolower($file));
                     13: include_once(strtoupper($file));
                     14: ?>
                     15: --EXPECT--
                     16: ok

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>