On 2015-10-26, Brad Jorsch (Anomie) <[email protected]> wrote:
> On Sat, Oct 24, 2015 at 7:14 PM, Marcin Cieslak <[email protected]> wrote:
>
>> I am getting few interesting failures:
>>
>> - floating point format problems
>>
>
> Why do you have serialize_precision set to 100? Once you go over the
> default of 17, you're into the range of rounding errors in an IEEE double,
> which in turn is what PHP typically is using for its float type.
>
> This probably doesn't break anything besides unit tests, though.

serialize_precision too high:

filed bug https://phabricator.wikimedia.org/T116683

gerrit change https://gerrit.wikimedia.org/r/#/c/249018/ that does ini_set()


>> - various XMP XML metadata issues
>>
>
> This seems to cover most of your errors. In particular, the metadata seems
> to be completely missing. What might be happening there is that
> XMPReader::isSupported() may be returning false on your system due to
> missing dependencies, and all these tests should be made to skip in that
> case.

Two problems: 

- XMP XML metadata reading needs allow_url_fopen enabled:

filed bug https://phabricator.wikimedia.org/T116701

also filed https://phabricator.wikimedia.org/T116704 to make sure
CI is running without allow_url_fopen (got bitten before as well)

- Some charset/iconv problem for testIPTCParseForcedUTFButInvalid()

filed bug https://phabricator.wikimedia.org/T116705
no patch/idea why it fails yet

>
>> and few others.
>>
>
> The only "other" looks like failures 3-6, which seems to boil down to some
> issue with JavaScriptContent::getRedirectTarget() recognizing redirects in
> general. If you can manage to figure out one of them (e.g. failure 4), it
> will probably figure out all of them. My guess offhand is that something in
> your setup is making the preg_match() in that function fail to match.

reason: mixed up $wgScript / $wgScriptPath

gerrit change https://gerrit.wikimedia.org/r/#/c/249004/
merged by legoktm, thanks!


Marcin


_______________________________________________
Wikitech-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

Reply via email to