summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph M. Becker <cmbecker69@gmx.de>2020-02-07 21:11:32 +0100
committerChristoph M. Becker <cmbecker69@gmx.de>2020-02-07 21:11:32 +0100
commit78b71e1e8f32b8d6282b84a5814d43dd47d1650f (patch)
treed7e6258ec8a78b105619e9040a5f1bab65db2fe7
parent1d9e80a53d84910acbde81715dbde9aef3320c47 (diff)
parentbcfb7b2be99093b70105d9e2b9df98623c8d6e59 (diff)
downloadphp-git-78b71e1e8f32b8d6282b84a5814d43dd47d1650f.tar.gz
Merge branch 'PHP-7.4'
* PHP-7.4: Skip test case on x86 where it otherwise fails [ci skip]
-rw-r--r--ext/com_dotnet/tests/bug73679.phpt4
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/com_dotnet/tests/bug73679.phpt b/ext/com_dotnet/tests/bug73679.phpt
index b21f9db10d..47de9b10c7 100644
--- a/ext/com_dotnet/tests/bug73679.phpt
+++ b/ext/com_dotnet/tests/bug73679.phpt
@@ -2,7 +2,9 @@
Bug #73679 DOTNET read access violation using invalid codepage
--SKIPIF--
<?php
-if (!extension_loaded("com_dotnet")) print "skip COM/.Net support not present"; ?>
+if (!extension_loaded("com_dotnet")) print "skip COM/.Net support not present";
+if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platforms only");
+?>
--FILE--
<?php