diff options
author | Stanislav Malyshev <stas@php.net> | 2009-12-08 01:52:57 +0000 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2009-12-08 01:52:57 +0000 |
commit | 327cf380e8e325f9a07005d8aa87ea4466ec46ca (patch) | |
tree | 910d2c3d9425b33ff66a4bddd1eb6889689db86e | |
parent | da22aa9aad871d1b5a3e150bd162a236b7601542 (diff) | |
download | php-git-327cf380e8e325f9a07005d8aa87ea4466ec46ca.tar.gz |
win32 should have different test
-rw-r--r-- | ext/standard/tests/file/realpath_cache.phpt | 6 | ||||
-rw-r--r-- | ext/standard/tests/file/realpath_cache_win32.phpt | 38 |
2 files changed, 44 insertions, 0 deletions
diff --git a/ext/standard/tests/file/realpath_cache.phpt b/ext/standard/tests/file/realpath_cache.phpt index 1e19486c49..567f0e2c71 100644 --- a/ext/standard/tests/file/realpath_cache.phpt +++ b/ext/standard/tests/file/realpath_cache.phpt @@ -1,5 +1,11 @@ --TEST-- realpath_cache_size() and realpath_cache_get() +--SKIPIF-- +<?php +if (substr(PHP_OS, 0, 3) == 'WIN') { + die('skip not on Windows'); +} +?> --FILE-- <?php diff --git a/ext/standard/tests/file/realpath_cache_win32.phpt b/ext/standard/tests/file/realpath_cache_win32.phpt new file mode 100644 index 0000000000..16fc412b09 --- /dev/null +++ b/ext/standard/tests/file/realpath_cache_win32.phpt @@ -0,0 +1,38 @@ +--TEST-- +realpath_cache_size() and realpath_cache_get() +--SKIPIF-- +<?php +if (substr(PHP_OS, 0, 3) != 'WIN') { + die('skip only on Windows'); +} +?> +--FILE-- +<?php + +var_dump(realpath_cache_size()); +$data = realpath_cache_get(); +var_dump($data[__DIR__]); + +echo "Done\n"; +?> +--EXPECTF-- +int(%d) +array(8) { + ["key"]=> + int(%d) + ["is_dir"]=> + bool(true) + ["realpath"]=> + string(%d) "%sfile" + ["expires"]=> + int(%d) + ["is_rvalid"]=> + bool(%s) + ["is_wvalid"]=> + bool(%s) + ["is_readable"]=> + bool(%s) + ["is_writable"]=> + bool(%s) +} +Done |