]> granicus.if.org Git - php/commitdiff
Fix test failed
authorXinchen Hui <laruence@php.net>
Sat, 21 Jul 2012 15:27:09 +0000 (23:27 +0800)
committerXinchen Hui <laruence@php.net>
Sat, 21 Jul 2012 15:27:09 +0000 (23:27 +0800)
ext/standard/tests/general_functions/uniqid_basic.phpt

index 9a9c57332721af7c251b4daffc7db5826daef555..2da832b8ed2835682c80cb5dd7a73817aaad0330 100644 (file)
@@ -1,73 +1,72 @@
---TEST--\r
-Test uniqid() function : basic functionality\r
---FILE--\r
-<?php\r
-/* Prototype  : string uniqid  ([ string $prefix= ""  [, bool $more_entropy= false  ]] )\r
- * Description: Gets a prefixed unique identifier based on the current time in microseconds. \r
- * Source code: ext/standard/uniqid.c\r
-*/\r
-echo "*** Testing uniqid() : basic functionality ***\n";\r
-\r
-echo "\nuniqid() without a prefix\n";\r
-var_dump(uniqid());\r
-var_dump(uniqid(null, true));\r
-var_dump(uniqid(null, false));\r
-echo "\n\n";\r
-\r
-echo "uniqid() with a prefix\n";\r
-\r
-// Use a fixed prefix so we can ensure length of o/p id is fixed \r
-$prefix = array (\r
-                               99999,\r
-                               "99999",\r
-                               10.5e2,\r
-                               null,\r
-                               true,\r
-                               false                           \r
-                               );\r
-\r
-for ($i = 0; $i < count($prefix); $i++) {                              \r
-       var_dump(uniqid($prefix[$i]));\r
-       var_dump(uniqid($prefix[$i], true));\r
-       var_dump(uniqid($prefix[$i], false));\r
-       echo "\n";\r
-}      \r
-\r
-?>\r
-===DONE===\r
---EXPECTF-- \r
-*** Testing uniqid() : basic functionality ***\r
-\r
-uniqid() without a prefix\r
-string(13) "%s"\r
-string(23) "%s.%s"\r
-string(13) "%s"\r
-\r
-\r
-uniqid() with a prefix\r
-string(18) "99999%s"\r
-string(28) "99999%s.%s"\r
-string(18) "99999%s"\r
-\r
-string(18) "999994%s"\r
-string(28) "999994%s.%s"\r
-string(18) "999994%s"\r
-\r
-string(17) "1050%s"\r
-string(27) "1050%s.%s"\r
-string(17) "1050%s"\r
-\r
-string(13) "%s"\r
-string(23) "%s.%s"\r
-string(13) "%s"\r
-\r
-string(14) "1%s"\r
-string(24) "1%s.%s"\r
-string(14) "1%s"\r
-\r
-string(13) "%s"\r
-string(23) "%s.%s"\r
-string(13) "%s"\r
-\r
-===DONE===\r
-       
\ No newline at end of file
+--TEST--
+Test uniqid() function : basic functionality
+--FILE--
+<?php
+/* Prototype  : string uniqid  ([ string $prefix= ""  [, bool $more_entropy= false  ]] )
+ * Description: Gets a prefixed unique identifier based on the current time in microseconds. 
+ * Source code: ext/standard/uniqid.c
+*/
+echo "*** Testing uniqid() : basic functionality ***\n";
+
+echo "\nuniqid() without a prefix\n";
+var_dump(uniqid());
+var_dump(uniqid(null, true));
+var_dump(uniqid(null, false));
+echo "\n\n";
+
+echo "uniqid() with a prefix\n";
+
+// Use a fixed prefix so we can ensure length of o/p id is fixed 
+$prefix = array (
+                               99999,
+                               "99999",
+                               10.5e2,
+                               null,
+                               true,
+                               false                           
+                               );
+
+for ($i = 0; $i < count($prefix); $i++) {                              
+       var_dump(uniqid($prefix[$i]));
+       var_dump(uniqid($prefix[$i], true));
+       var_dump(uniqid($prefix[$i], false));
+       echo "\n";
+}      
+
+?>
+===DONE===
+--EXPECTF-- 
+*** Testing uniqid() : basic functionality ***
+
+uniqid() without a prefix
+string(13) "%s"
+string(23) "%s.%s"
+string(13) "%s"
+
+
+uniqid() with a prefix
+string(18) "99999%s"
+string(28) "99999%s.%s"
+string(18) "99999%s"
+
+string(18) "99999%s"
+string(28) "99999%s.%s"
+string(18) "99999%s"
+
+string(17) "1050%s"
+string(27) "1050%s.%s"
+string(17) "1050%s"
+
+string(13) "%s"
+string(23) "%s.%s"
+string(13) "%s"
+
+string(14) "1%s"
+string(24) "1%s.%s"
+string(14) "1%s"
+
+string(13) "%s"
+string(23) "%s.%s"
+string(13) "%s"
+
+===DONE===