--- /dev/null
+--TEST--
+time_nanosleep — Delay for a number of seconds and nanoseconds
+--SKIPIF--
+<?php if (!function_exists('time_nanosleep')) die("skip"); ?>
+--CREDITS--
+Àlex Corretgé - alex@corretge.cat
+--FILE--
+<?php
+$nano = time_nanosleep(2, 100000);
+
+if ($nano === true) {
+ echo "Slept for 2 seconds, 100 milliseconds.\n";
+} elseif ($nano === false) {
+ echo "Sleeping failed.\n";
+} elseif (is_array($nano)) {
+ $seconds = $nano['seconds'];
+ $nanoseconds = $nano['nanoseconds'];
+ echo "Interrupted by a signal.\n";
+ echo "Time remaining: $seconds seconds, $nanoseconds nanoseconds.";
+}
+?>
+--EXPECT--
+Slept for 2 seconds, 100 milliseconds.
--- /dev/null
+--TEST--
+time_nanosleep — Delay for a number of seconds and nanoseconds
+--SKIPIF--
+<?php if (!function_exists('time_nanosleep')) die("skip"); ?>
+--CREDITS--
+Àlex Corretgé - alex@corretge.cat
+--FILE--
+<?php
+
+$nano = time_nanosleep('A', 100000);
+
+?>
+--EXPECTF--
+Warning: time_nanosleep() expects parameter 1 to be long, %unicode_string_optional% given in %s.php on line %d
--- /dev/null
+--TEST--
+time_nanosleep — Delay for a number of seconds and nanoseconds
+--SKIPIF--
+<?php if (!function_exists('time_nanosleep')) die("skip"); ?>
+--CREDITS--
+Àlex Corretgé - alex@corretge.cat
+--FILE--
+<?php
+
+$nano = time_nanosleep(2, 'B');
+
+?>
+--EXPECTF--
+Warning: time_nanosleep() expects parameter 2 to be long, %unicode_string_optional% given in %s.php on line %d
--- /dev/null
+--TEST--
+time_nanosleep — Delay for a number of seconds and nanoseconds
+--SKIPIF--
+<?php if (!function_exists('time_nanosleep')) die("skip"); ?>
+--CREDITS--
+Àlex Corretgé - alex@corretge.cat
+--FILE--
+<?php
+
+$nano = time_nanosleep(-2, 1000);
+
+?>
+--EXPECTF--
+Warning: time_nanosleep(): nanoseconds was not in the range 0 to 999 999 999 or seconds was negative in %s.php on line %d
--- /dev/null
+--TEST--
+time_nanosleep — Delay for a number of seconds and nanoseconds
+--SKIPIF--
+<?php if (!function_exists('time_nanosleep')) die("skip"); ?>
+--CREDITS--
+Àlex Corretgé - alex@corretge.cat
+--FILE--
+<?php
+
+$nano = time_nanosleep(0, -10);
+
+?>
+--EXPECTF--
+Warning: time_nanosleep(): nanoseconds was not in the range 0 to 999 999 999 or seconds was negative in %s.php on line %d
--- /dev/null
+--TEST--
+time_nanosleep — Delay for a number of seconds and nanoseconds
+--SKIPIF--
+<?php if (!function_exists('time_nanosleep')) die("skip"); ?>
+--CREDITS--
+Àlex Corretgé - alex@corretge.cat
+--FILE--
+<?php
+
+$nano = time_nanosleep(0, 1000000000);
+
+?>
+--EXPECTF--
+Warning: time_nanosleep(): nanoseconds was not in the range 0 to 999 999 999 or seconds was negative in %s.php on line %d