Skip to content

Commit d51ba97

Browse files
committed
fix other tests for Windows x86 build -cherrypick 9744
1 parent 9ef5855 commit d51ba97

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

ext/gd/tests/bug77269.phpt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ gd
55
--SKIPIF--
66
<?php
77
if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
8+
if (substr(PHP_OS, 0, 3) == 'WIN' && PHP_INT_SIZE === 4) die("skip not for Windows x86");
89
?>
910
--INI--
1011
memory_limit=2G

ext/gd/tests/bug77272.phpt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ gd
88
<?php
99
if (!GD_BUNDLED && version_compare(GD_VERSION, '2.2.5', '<=')) die('skip upstream fix not yet released');
1010
if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
11+
if (substr(PHP_OS, 0, 3) == 'WIN' && PHP_INT_SIZE === 4) die("skip not for Windows x86");
1112
?>
1213
--FILE--
1314
<?php

0 commit comments

Comments
 (0)