1--TEST--
2time_nanosleep — Delay for a number of seconds and nanoseconds
3--SKIPIF--
4<?php if (!function_exists('time_nanosleep')) die("skip"); ?>
5--CREDITS--
6Àlex Corretgé - alex@corretge.cat
7--FILE--
8<?php
9
10$nano = time_nanosleep(0, 1000000000);
11
12?>
13--EXPECTF--
14Warning: time_nanosleep(): nanoseconds was not in the range 0 to 999 999 999 or seconds was negative in %s.php on line %d
15