Annotation of embedaddon/php/ext/standard/tests/directory/directory_constants-win32.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: Test that the Directory extension constants are correctly defined.
                      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: 
                     12: echo DIRECTORY_SEPARATOR;
                     13: 
                     14: echo "\n";
                     15: 
                     16: echo PATH_SEPARATOR;
                     17: 
                     18: echo "\n";
                     19: 
                     20: echo "done";
                     21: 
                     22: ?>
                     23: --EXPECT--
                     24: \
                     25: ;
                     26: done

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