Front page | perl.perl5.porters |
Postings from August 2001
Re: HPUX 10.20
Thread Previous
|
Thread Next
From:
H . Merijn Brand
Date:
August 31, 2001 09:15
Subject:
Re: HPUX 10.20
Message ID:
20010831174628.8703.H.M.BRAND@hccnet.nl
On Fri 31 Aug 2001 09:34, Arthur Bergman <arthur@contiller.se> wrote:
>
> I think the problem is that we should not do
>
> SAVEI32 at regcomp.c:4738
>
> PL_reg_sv_utf8 is a bool indicating wheter or not there is UTF8.
>
> It apperently bus errors doing a SAVEI32 on HP-UX 10.20.
>
> One idea might just be to try
>
> SAVEI8
> SAVEI16
> SAVEIINT
> SAVEIV
>
> or whatever bool is on HP-UX 10.20 ?
I don't know how to check what perl has taken to represent bool, but just
tried SAVEI8:
--8<---
--- /l1/pro/3gl/CPAN/perl-current/regcomp.c Thu Aug 30 16:08:27 2001
+++ /k1/pro/3gl/CPAN/perl-current/regcomp.c Fri Aug 31 17:30:10 2001
@@ -4735,7 +4735,7 @@
SAVEVPTR(PL_reg_re); /* from regexec.c */
SAVEPPTR(PL_reg_ganch); /* from regexec.c */
SAVESPTR(PL_reg_sv); /* from regexec.c */
- SAVEI32(PL_reg_sv_utf8); /* from regexec.c */
+ SAVEI8(PL_reg_sv_utf8); /* from regexec.c */
SAVEVPTR(PL_reg_magic); /* from regexec.c */
SAVEI32(PL_reg_oldpos); /* from regexec.c */
SAVEVPTR(PL_reg_oldcurpm); /* from regexec.c */
-->8---
Failed 1 test script out of 429, 99.77% okay.
u=5.35 s=1.7 cu=315.11 cs=27.06 scripts=429 tests=25464
The failed one is: lib/File/Find/taint................FAILED at test 29
Please someone put this through the correct way, before 22:25, so we've no
more 'm's tomorrow.
--
H.Merijn Brand Amsterdam Perl Mongers (http://www.amsterdam.pm.org/)
using perl-5.6.1, 5.7.1 & 628 on HP-UX 10.20 & 11.00, AIX 4.2, AIX 4.3,
WinNT 4, Win2K pro & WinCE 2.11. Smoking perl CORE: smokers@perl.org
http://archives.develooper.com/daily-build@perl.org/ perl-qa@perl.org
send smoke reports to: smokers-reports@perl.org, QA: http://qa.perl.org
Thread Previous
|
Thread Next
-
HPUX 10.20
by Arthur Bergman
-
Re: HPUX 10.20
by H . Merijn Brand