Skip to content

Commit 674d44a

Browse files
committed
Skip test case on x86 where it otherwise fails [ci skip]
`-2200000000` can't be converted to integer on x86, so the constructor call would fail.
1 parent b9738f5 commit 674d44a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ext/com_dotnet/tests/bug73679.phpt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
Bug #73679 DOTNET read access violation using invalid codepage
33
--SKIPIF--
44
<?php # vim:ft=php
5-
if (!extension_loaded("com_dotnet")) print "skip COM/.Net support not present"; ?>
5+
if (!extension_loaded("com_dotnet")) print "skip COM/.Net support not present";
6+
if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platforms only");
7+
?>
68
--FILE--
79
<?php
810

0 commit comments

Comments
 (0)