diff options
| author | Christoph M. Becker <cmbecker69@gmx.de> | 2020-02-07 21:10:44 +0100 |
|---|---|---|
| committer | Christoph M. Becker <cmbecker69@gmx.de> | 2020-02-07 21:10:44 +0100 |
| commit | bcfb7b2be99093b70105d9e2b9df98623c8d6e59 (patch) | |
| tree | 8bd91a2b8624fe7492ba5295014a50edc5e7b4ca /ext/com_dotnet | |
| parent | 7f86f9972e8ed79e8157d38e1f782d7dec2c7472 (diff) | |
| parent | 674d44ad7c03a0f815b00c8849e104676a398651 (diff) | |
| download | php-git-bcfb7b2be99093b70105d9e2b9df98623c8d6e59.tar.gz | |
Merge branch 'PHP-7.3' into PHP-7.4
* PHP-7.3:
Skip test case on x86 where it otherwise fails [ci skip]
Diffstat (limited to 'ext/com_dotnet')
| -rw-r--r-- | ext/com_dotnet/tests/bug73679.phpt | 4 |
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 |
