summaryrefslogtreecommitdiff
path: root/ext/standard/tests/time/001.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/time/001.phpt')
-rw-r--r--ext/standard/tests/time/001.phpt24
1 files changed, 0 insertions, 24 deletions
diff --git a/ext/standard/tests/time/001.phpt b/ext/standard/tests/time/001.phpt
deleted file mode 100644
index 0f08cb21bb..0000000000
--- a/ext/standard/tests/time/001.phpt
+++ /dev/null
@@ -1,24 +0,0 @@
---TEST--
-microtime() function
---POST--
---GET--
---FILE--
-<?php
-$passed = 0;
-$failed = 0;
-$last = 0;
-
-set_time_limit(0);
-
-for ($i=1;$i<=100000;$i++) {
- list($micro,$time)=explode(" ",microtime());
- $add=$micro+$time;
- $add<$last ? $failed++: $passed++;
- $last=$add;
-}
-echo "Passed: ".$passed."\n";
-echo "Failed: ".$failed."\n";
-?>
---EXPECT--
-Passed: 100000
-Failed: 0 \ No newline at end of file