Skip to content

Commit 9c6746a

Browse files
committed
Partial
1 parent cdd2ace commit 9c6746a

File tree

8 files changed

+2
-33
lines changed

8 files changed

+2
-33
lines changed

ext/standard/tests/math/acos_variation.phpt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,6 @@ float(NAN)
4444
float(NAN)
4545
float(NAN)
4646
float(NAN)
47-
48-
Warning: acos() expects parameter 1 to be float, string given in %s on line %d
49-
NULL
5047
float(NAN)
5148

5249
Notice: A non well formed numeric value encountered in %s on line %d

ext/standard/tests/math/acosh_variation.phpt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,6 @@ float(3.828168471)
4444
float(3.828168471)
4545
float(3.847562739)
4646
float(3.847562739)
47-
48-
Warning: acosh() expects parameter 1 to be float, string given in %s on line %d
49-
NULL
5047
float(7.60090221)
5148

5249
Notice: A non well formed numeric value encountered in %s on line %d

ext/standard/tests/math/asin_variation.phpt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,6 @@ float(NAN)
4444
float(NAN)
4545
float(NAN)
4646
float(NAN)
47-
48-
Warning: asin() expects parameter 1 to be float, string given in %s on line %d
49-
NULL
5047
float(NAN)
5148

5249
Notice: A non well formed numeric value encountered in %s on line %d

ext/standard/tests/math/asinh_variation.phpt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,6 @@ float(3.829113652)
4444
float(3.829113652)
4545
float(3.848471992)
4646
float(3.848471992)
47-
48-
Warning: asinh() expects parameter 1 to be float, string given in %s on line %d
49-
NULL
5047
float(7.60090271)
5148

5249
Notice: A non well formed numeric value encountered in %s on line %d

ext/standard/tests/math/atan_variation.phpt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,6 @@ float(1.527345431)
4444
float(1.527345431)
4545
float(1.528178225)
4646
float(1.528178225)
47-
48-
Warning: atan() expects parameter 1 to be float, string given in %s on line %d
49-
NULL
5047
float(1.569796327)
5148

5249
Notice: A non well formed numeric value encountered in %s on line %d

ext/standard/tests/math/base_convert_error.phpt

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -14,30 +14,18 @@ class classA
1414
{
1515
}
1616

17-
echo "Incorrect number of arguments\n";
18-
base_convert();
19-
base_convert(35);
20-
base_convert(35,2);
17+
echo "Incorrect input\n";
2118
base_convert(1234, 1, 10);
2219
base_convert(1234, 10, 37);
23-
24-
echo "Incorrect input\n";
2520
base_convert(new classA(), 8, 10);
2621

2722
?>
2823
--EXPECTF--
2924
*** Testing base_convert() : error conditions ***
30-
Incorrect number of arguments
31-
32-
Warning: base_convert() expects exactly 3 parameters, 0 given in %s on line %d
33-
34-
Warning: base_convert() expects exactly 3 parameters, 1 given in %s on line %d
35-
36-
Warning: base_convert() expects exactly 3 parameters, 2 given in %s on line %d
25+
Incorrect input
3726

3827
Warning: base_convert(): Invalid `from base' (1) in %s on line %d
3928

4029
Warning: base_convert(): Invalid `to base' (37) in %s on line %d
41-
Incorrect input
4230

4331
Recoverable fatal error: Object of class classA could not be converted to string in %s on line %d

ext/standard/tests/math/cos_variation.phpt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,6 @@ float(-0.5328330203)
4444
float(-0.5328330203)
4545
float(-0.1117112391)
4646
float(-0.1117112391)
47-
48-
Warning: cos() expects parameter 1 to be float, string given in %s on line %d
49-
NULL
5047
float(0.5623790763)
5148

5249
Notice: A non well formed numeric value encountered in %s on line %d

ext/standard/tests/math/cosh_variation.phpt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ $values = array(23,
2121
"23",
2222
"23.45",
2323
"2.345e1",
24-
"nonsense",
2524
"1000",
2625
"1000ABC",
2726
null,

0 commit comments

Comments
 (0)