From 674d44ad7c03a0f815b00c8849e104676a398651 Mon Sep 17 00:00:00 2001 From: "Christoph M. Becker" Date: Fri, 7 Feb 2020 21:00:27 +0100 Subject: [PATCH] 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. --- ext/com_dotnet/tests/bug73679.phpt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ext/com_dotnet/tests/bug73679.phpt b/ext/com_dotnet/tests/bug73679.phpt index b5b884553f..b1ccdc1650 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-- +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--