1--TEST--
2Test that sapi_windows_vt100_support exists only on Windows
3--SKIPIF--
4<?php
5if(PHP_OS_FAMILY === "Windows") {
6    echo "skip Only for not Windows systems";
7}
8?>
9--FILE--
10<?php
11var_dump(function_exists('sapi_windows_vt100_support'));
12?>
13--EXPECT--
14bool(false)
15