diff options
author | Hannes Magnusson <bjori@php.net> | 2006-10-15 13:43:45 +0000 |
---|---|---|
committer | Hannes Magnusson <bjori@php.net> | 2006-10-15 13:43:45 +0000 |
commit | b3a914aca83e9ca1e2bd4fae01cd644e9ceb8601 (patch) | |
tree | a0da26146c322ed56edaef4acdc54e4a15a12114 | |
parent | 8104df054705802ae9a1bbcda4529aef18d671ee (diff) | |
download | php-git-b3a914aca83e9ca1e2bd4fae01cd644e9ceb8601.tar.gz |
Fix test (bug#39097)
-rw-r--r-- | ext/standard/tests/math/constants.phpt | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/ext/standard/tests/math/constants.phpt b/ext/standard/tests/math/constants.phpt index 94ba3fd7d3..7b5110f532 100644 --- a/ext/standard/tests/math/constants.phpt +++ b/ext/standard/tests/math/constants.phpt @@ -22,25 +22,25 @@ $constants = array( "M_SQRT3" ); foreach($constants as $constant) { - printf("%-10s: %.14s\n", $constant, constant($constant)); + printf("%-10s: %s\n", $constant, constant($constant)); } ?> ---EXPECT-- -M_E : 2.718281828459 -M_LOG2E : 1.442695040889 -M_LOG10E : 0.434294481903 -M_LN2 : 0.693147180559 -M_LN10 : 2.302585092994 -M_PI : 3.141592653589 -M_PI_2 : 1.570796326794 -M_PI_4 : 0.785398163397 -M_1_PI : 0.318309886183 -M_2_PI : 0.636619772367 -M_SQRTPI : 1.772453850905 -M_2_SQRTPI: 1.128379167095 -M_LNPI : 1.144729885849 -M_EULER : 0.577215664901 -M_SQRT2 : 1.414213562373 -M_SQRT1_2 : 0.707106781186 -M_SQRT3 : 1.732050807568 +--EXPECTREGEX-- +M_E : 2.718281[0-9]* +M_LOG2E : 1.442695[0-9]* +M_LOG10E : 0.434294[0-9]* +M_LN2 : 0.693147[0-9]* +M_LN10 : 2.302585[0-9]* +M_PI : 3.141592[0-9]* +M_PI_2 : 1.570796[0-9]* +M_PI_4 : 0.785398[0-9]* +M_1_PI : 0.318309[0-9]* +M_2_PI : 0.636619[0-9]* +M_SQRTPI : 1.772453[0-9]* +M_2_SQRTPI: 1.128379[0-9]* +M_LNPI : 1.144729[0-9]* +M_EULER : 0.577215[0-9]* +M_SQRT2 : 1.414213[0-9]* +M_SQRT1_2 : 0.707106[0-9]* +M_SQRT3 : 1.732050[0-9]* |