Skip to content

Commit

Permalink
Fix test for x86 Windows
Browse files Browse the repository at this point in the history
`st_dev` deliberately overflows on such systems, cf.
<http://svn.php.net/viewvc?view=revision&revision=350100>.
  • Loading branch information
cmb69 committed Jul 13, 2020
1 parent 7a39e17 commit e2c17ce
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions ext/standard/tests/file/lstat_stat_variation20.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ unlink("$file_path/lstat_stat_variation20.tmp");
-- Testing lstat() on link name stored inside an object --
array(26) {
[0]=>
int(%d)
int(%i)
[1]=>
int(%d)
[2]=>
Expand All @@ -93,7 +93,7 @@ array(26) {
[12]=>
int(%i)
["dev"]=>
int(%d)
int(%i)
["ino"]=>
int(%d)
["mode"]=>
Expand Down Expand Up @@ -123,7 +123,7 @@ array(26) {
-- Testing stat() on link name stored inside an array --
array(26) {
[0]=>
int(%d)
int(%i)
[1]=>
int(%d)
[2]=>
Expand All @@ -149,7 +149,7 @@ array(26) {
[12]=>
int(%i)
["dev"]=>
int(%d)
int(%i)
["ino"]=>
int(%d)
["mode"]=>
Expand Down Expand Up @@ -177,7 +177,7 @@ array(26) {
}
array(26) {
[0]=>
int(%d)
int(%i)
[1]=>
int(%d)
[2]=>
Expand All @@ -203,7 +203,7 @@ array(26) {
[12]=>
int(%i)
["dev"]=>
int(%d)
int(%i)
["ino"]=>
int(%d)
["mode"]=>
Expand Down Expand Up @@ -231,7 +231,7 @@ array(26) {
}
array(26) {
[0]=>
int(%d)
int(%i)
[1]=>
int(%d)
[2]=>
Expand All @@ -257,7 +257,7 @@ array(26) {
[12]=>
int(%i)
["dev"]=>
int(%d)
int(%i)
["ino"]=>
int(%d)
["mode"]=>
Expand Down

0 comments on commit e2c17ce

Please sign in to comment.