in reply to Problem compiling Perl 5.14.2 - op/stat.t test 37 failed

The first line is "celkem" that means total in english and begins with c. So, please correct it and remove the first line from the test and post a patch please :)

Well, I haven't checked, but IIRC, you should find $ENV{LANG}='C'; or some such somewhere in the test suite, whose purpose is to nullify any such localizations or error messages

  • Comment on Re: Problem compiling Perl 5.14.2 - op/stat.t test 37 failed

Replies are listed 'Best First'.
Re^2: Problem compiling Perl 5.14.2 - op/stat.t test 37 failed
by Anonymous Monk on May 31, 2012 at 03:37 UTC

    I checked, it needs one of these :)

    lib/open.t 225 $ENV{LC_ALL} = $ENV{LANG} = 'ru_RU.KOI8-R'; t/op/exec.t 33 $ENV{LC_ALL} = 'C'; # Forge English error messages. t/op/groups.t 10 $ENV{LC_ALL} = "C"; # so that external utilities speak Englis +h t/op/lfs.t 119 $ENV{LC_ALL} = "C";

    Though on my win32/mingw machine ls.exe doesn't seem to respond to LC_ALL or LANG at all, so I can't exactly test this :)