1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 11:13:36 +02:00

fix skipif

This commit is contained in:
Hannes Magnusson
2009-06-17 10:18:17 +00:00
parent 9900d2097c
commit d535dec2e0
@@ -2,7 +2,7 @@
time_nanosleep — Delay for a number of seconds and nanoseconds
--SKIPIF--
<?php
if (substr(strtoupper(PHP_OS), 'WIN')) die("skip Test is not valid for Windows");
if (strpos(strtoupper(PHP_OS), 'WIN') !== false) die("skip Test is not valid for Windows");
if (!function_exists('time_nanosleep')) die("skip");
?>
--CREDITS--