1--TEST--
2Test bug #64370 sequential microtime(true) calls
3--FILE--
4<?php
5
6$i = 0;
7while(100000 > $i++) {
8    $m0 = microtime(true);
9    $m1 = microtime(true);
10    $d = $m1 - $m0;
11
12    /*echo "$d\n";*/
13
14    if ($d < 0) {
15        die("failed in {$i}th iteration");
16    }
17}
18echo "ok\n";
19?>
20--EXPECT--
21ok
22