summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/vprintf_variation5.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/strings/vprintf_variation5.phpt')
-rw-r--r--ext/standard/tests/strings/vprintf_variation5.phpt23
1 files changed, 8 insertions, 15 deletions
diff --git a/ext/standard/tests/strings/vprintf_variation5.phpt b/ext/standard/tests/strings/vprintf_variation5.phpt
index dde6170e9f..b09acb7877 100644
--- a/ext/standard/tests/strings/vprintf_variation5.phpt
+++ b/ext/standard/tests/strings/vprintf_variation5.phpt
@@ -2,11 +2,6 @@
Test vprintf() function : usage variations - float formats with float values
--FILE--
<?php
-/* Prototype : string vprintf(string format, array args)
- * Description: Output a formatted string
- * Source code: ext/standard/formatted_print.c
-*/
-
/*
* Test vprintf() when different float formats and float values are passed to
* the '$format' and '$args' arguments of the function
@@ -19,11 +14,11 @@ echo "*** Testing vprintf() : int formats with float values ***\n";
$formats = array(
"%f",
"%+f %-f %F",
- "%lf %Lf, %4f %-4f",
+ "%lf %4f %-4f",
"%10.4f %-10.4F %04f %04.4f",
"%'#2f %'2f %'$2f %'_2f",
"%f %f %f %f",
- "% %%f f%",
+ "% %%f",
'%3$f %4$f %1$f %2$f'
);
@@ -32,11 +27,11 @@ $formats = array(
$args_array = array(
array(0.0),
array(-0.1, +0.1, +10.0000006),
- array(2147483649, -2147483647, +2147483640, -2147483640),
+ array(2147483649, +2147483640, -2147483640),
array(2e5, 2e-5, -2e5, -2e-5),
array(0.2E5, -0.2e40, 0.2E-20, 0.2E+20),
array(0x123b, 0xfAb, 0123, 012),
- array(1234.1234, -5678.5678, 2345.2345),
+ array(1234.1234, -5678.5678),
array(3.33, 4.44, 1.11, 2.22)
);
@@ -53,7 +48,6 @@ foreach($formats as $format) {
}
?>
-===DONE===
--EXPECT--
*** Testing vprintf() : int formats with float values ***
@@ -66,8 +60,8 @@ int(8)
int(28)
-- Iteration 3 --
-2147483649.000000 f, 2147483640.000000 -2147483640.000000
-int(57)
+2147483649.000000 2147483640.000000 -2147483640.000000
+int(54)
-- Iteration 4 --
200000.0000 0.0000 -200000.000000 -0.0000
@@ -82,10 +76,9 @@ int(98)
int(43)
-- Iteration 7 --
-%-5678.567800 f
-int(15)
+%-5678.567800
+int(13)
-- Iteration 8 --
1.110000 2.220000 3.330000 4.440000
int(35)
-===DONE===