Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

[do_not_reply@cpantesters.org: CPAN Testers Daily Summary Report]

1 view
Skip to first unread message

Richard Jelinek

unread,
Mar 30, 2013, 4:52:55 AM3/30/13
to cpan-teste...@perl.org
Hi,

we're having issues with the CPAN Testers report for
Lingua::RUS::Number (see below). Test output seems to indicate there
are encoding errors (double/tripple encoding) but we're unable to
reproduce this on any OS, any Perl version available here.

Does anyone have an idea what could cause these fails on these
particular systems? (In other tests @ linux this module passes also @
CPAN Testers)



----- Forwarded message from CPAN Tester Report Server <do_not...@cpantesters.org> -----

Envelope-to: in...@petamem.com
Delivery-date: Sat, 30 Mar 2013 03:43:47 +0100
Delivered-To: PET...@cpan.org
To: PetaMem <PET...@cpan.org>
From: CPAN Tester Report Server <do_not...@cpantesters.org>
Date: Sat, 30 Mar 2013 02:43:34 +0000
Subject: CPAN Testers Daily Summary Report
X-PMX-Version: 5.6.1.2065439, Antispam-Engine: 2.7.2.376379, Antispam-Data: 2013.3.12.170320

Dear PetaMem,

Please find below the latest reports for your distributions, generated by CPAN Testers, from the last 24 hours.

To set your preferences for what you wish to have reported in this Daily Summary, please visit the CPAN Testers Preferences system at https://prefs.cpantesters.org.


Lingua-RUS-Number-0.0708:
- x86_64-linux-ld / 5.14.3:
- FAIL http://www.cpantesters.org/cpan/report/0b26fdb6-97b7-11e2-b37c-3668c51cef80

- x86_64-linux-ld / 5.14.4:
- FAIL http://www.cpantesters.org/cpan/report/03197f18-97b7-11e2-9845-2165c51cef80

- x86_64-linux-ld / 5.16.2:
- FAIL http://www.cpantesters.org/cpan/report/29b96912-97b7-11e2-aaef-6074c51cef80

- x86_64-linux-ld / 5.17.6:
- FAIL http://www.cpantesters.org/cpan/report/fb561b60-97b6-11e2-905e-d063c51cef80

- x86_64-linux-ld / 5.17.9:
- FAIL http://www.cpantesters.org/cpan/report/f3c90330-97b6-11e2-af3f-8a5fc51cef80

- x86_64-linux-thread-multi-ld / 5.12.5:
- FAIL http://www.cpantesters.org/cpan/report/0c480870-97b7-11e2-b37c-3668c51cef80

- x86_64-linux-thread-multi-ld / 5.16.2:
- FAIL http://www.cpantesters.org/cpan/report/045ae83a-97b7-11e2-9845-2165c51cef80

- x86_64-linux-thread-multi-ld / 5.17.10:
- FAIL http://www.cpantesters.org/cpan/report/f4bb5284-97b6-11e2-af3f-8a5fc51cef80

- x86_64-linux-thread-multi-ld / 5.17.8:
- FAIL http://www.cpantesters.org/cpan/report/fc5cdff8-97b6-11e2-905e-d063c51cef80



If you have an issue with a particular report, or wish to gain further information from the tester, please use the 'Find A Tester' tool at http://stats.cpantesters.org/cpanmail.html, using the ID or GUID of the report, as listed above, to locate the correct email address.

If you wish to unsubscribe from these notifications, please login to the CPAN Testers Preferences system, with your PAUSE credentials, and disable CPAN Testers notifications permanently or temporarily. If you have problems with accessing the site, please contact Barbie <bar...@cpan.org> and request to be removed from the automatic mailings.

Thanks,
The CPAN Testers
--
Reports: http://www.cpantesters.org
Statistics: http://stats.cpantesters.org
Wiki: http://wiki.cpantesters.org
Preferences: https://prefs.cpantesters.org

----- End forwarded message -----

--
Dipl.-Inf. Univ. Richard C. Jelinek

PetaMem GmbH - www.petamem.com Gesch�ftsf�hrer: Richard Jelinek
Language Technology - We Mean IT! Sitz der Gesellschaft: F�rth
2.58921 * 10^8 Mind Units Registergericht: AG F�rth, HRB-9201

Andreas Koenig

unread,
Apr 2, 2013, 3:06:21 PM4/2/13
to Richard Jelinek, cpan-teste...@perl.org
Richard Jelinek <r...@petamem.com> writes:

> Hi,
>
> we're having issues with the CPAN Testers report for
> Lingua::RUS::Number (see below). Test output seems to indicate there
> are encoding errors (double/tripple encoding)

I'm the submitter of the reports. I don't see any indication of encoding
problems when I run the tests on the console, I see beautiful cyrillic
letters. I blame either my incompetence or the cpantesters toolchain
that the double encoding happens, but it is not the cause of the
problem.

The cause is that some of my smokers are compiled with -Duselongdouble.
There is a 100% correlation between having compiled with -Duselongdouble
and a failing test. One of the outputs I see is

not ok 2 - 8.00 RUR
# Failed test '8.00 RUR'
# at t/Number.t line 70.
# got: 'семь рублей ноль копеек'
# expected: 'восемь рублей ноль копеек'
main::(t/Number.t:71): $tests++;

seven vs eight? This is a truncation problem somewhere and that the
number 8.00 gets an internal representation as 7.9999999 something. Try
rounding to an integer when you want an integer!

> but we're unable to
> reproduce this on any OS, any Perl version available here.
>
> Does anyone have an idea what could cause these fails on these
> particular systems? (In other tests @ linux this module passes also @
> CPAN Testers)

Thank you for asking.

<shamelessplug>

http://analysis.cpantesters.org/solved?distv=Lingua-RUS-Number-0.0708
already had the answer when I looked:

Top Regressions:
1.000 conf:nvsize
1.000 conf:nvtype
1.000 conf:uselongdouble
1.000 qr:(Failed test\s+\S+.*)
1.000 conf:alignbytes
1.000 conf:archname
1.000 conf:archname+osvers

If analysis has a result like it has here, the diagnose is usually
correct
</shamelessplug>

Thanks again && Regards,
--
andreas
0 new messages