php-src/tests/output/sapi_windows_vt100_support_notwindows.phpt
Kalle Sommer Nielsen f9959ee7c2 Change PHP_OS_FAMILY slightly
* PHP_OS_FAMILY is now a macro, to allow extensions to take advantage of it, it is defined in php.h
* Values are not upper-case-first, not always uppercase. Windows is no longer just "Win", if we want the short version for testing then PHP_OS is always WINNT anyway
2017-02-22 12:31:06 +01:00

15 lines
269 B
PHP

--TEST--
Test that sapi_windows_vt100_support exists only on Windows
--SKIPIF--
<?php
if(PHP_OS_FAMILY === "Windows") {
echo "skip Only for not Windows systems";
}
?>
--FILE--
<?php
var_dump(function_exists('sapi_windows_vt100_support'));
?>
--EXPECT--
bool(false)