mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00

Remove most of the `===DONE===` tags and its variations. Keep `===DONE===` if the test output otherwise becomes empty. Closes GH-4872.
16 lines
305 B
PHP
16 lines
305 B
PHP
--TEST--
|
|
Check that windows version constants are initialized
|
|
--SKIPIF--
|
|
<?php
|
|
if (substr(PHP_OS, 0, 3) != 'WIN') {
|
|
die('skip.. Windows only');
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
var_dump(PHP_WINDOWS_VERSION_MAJOR > 0, PHP_WINDOWS_VERSION_MAJOR, PHP_WINDOWS_VERSION_MINOR);
|
|
?>
|
|
--EXPECTF--
|
|
bool(true)
|
|
int(%d)
|
|
int(%d)
|