mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
Fix Windows SKIPIF (#14219)
PHP_OS_FAMILY never has the value WIN, for Windows platforms it is the string "Windows". As such, this test was never executed. Fix this.
This commit is contained in:
parent
fa7933ef17
commit
719fa46150
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@
|
|||
Bug #38579 (include_once() may include the same file twice)
|
||||
--SKIPIF--
|
||||
<?php
|
||||
if(PHP_OS_FAMILY !== "WIN") {
|
||||
if(PHP_OS_FAMILY !== "Windows") {
|
||||
die('skip only for Windows');
|
||||
}
|
||||
?>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue