Fix skip condition of gh13082.phpt The test failure is not particularly related to Travis, but rather is caused by the GD font file to only be suitable for platforms where `int` stor
Fix skip condition of gh13082.phpt The test failure is not particularly related to Travis, but rather is caused by the GD font file to only be suitable for platforms where `int` stores 32bit values in little endian byte order. This platform dependence is documented in the source code[1]. Thus we fix the skip condition and skip reason accordingly. An alternative would be to dynamically create the font file just before running the test, but that appears to be overkill. [1] <https://github.com/php/php-src/blob/d59691c02fa77b65855ebbcd5f50aaac034ab75d/ext/gd/gd.c#L545-L556> Closes GH-14922.
show more ...
|