mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
4941e3fe44
sys_get_temp_dir() returns a Windows-style path (\\ instead of /) on Windows. This is why a Windows specific test is required. Skipping req60524.phpt on Windows. Adding -win32 fork for use only on Windows. Fixes test bug #64396.
14 lines
239 B
PHP
14 lines
239 B
PHP
--TEST--
|
|
Req #60524 (Specify temporary directory)
|
|
--INI--
|
|
sys_temp_dir=C:\Windows
|
|
--SKIPIF--
|
|
<?php
|
|
if( substr(PHP_OS, 0, 3) != "WIN" )
|
|
die('skip Run only on Windows');
|
|
?>
|
|
--FILE--
|
|
<?php echo sys_get_temp_dir(); ?>
|
|
--EXPECT--
|
|
C:\\Windows
|