qwurx [shmem] ~/rpms/perl/src/HTML-Tidy-1.08 > make test PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" t/*.t t/00-load..............ok t/cfg-for-parse........ok t/clean-crash..........ok t/extra-quote..........ok t/ignore-text..........ok t/ignore...............ok t/levels...............ok t/message..............ok t/opt-00...............ok t/perfect.............. Failed 1/3 subtests t/pod-coverage.........ok t/pod..................ok t/roundtrip............ok t/segfault-form........ok t/simple...............1/4 Unknown error type: line 2 column 5 - Info:
previously mentioned at t/simple.t line 17 Unknown error type: line 2 column 5 - Info: previously mentioned at t/simple.t line 17 Unknown error type: line 2 column 5 - Info: previously mentioned at t/simple.t line 17 t/simple...............ok t/too-many-titles......1/3 Unknown error type: line 4 column 9 - Info: previously mentioned at t/too-many-titles.t line 22 t/too-many-titles......ok t/unicode.............. Failed 1/7 subtests t/venus................1/3 Unknown error type: line 8 column 2 - Info:##
qwurx [shmem] ~/rpms/perl/src/HTML-Tidy-1.08 > PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" t/perfect.t
t/perfect...... Failed 1/3 subtests
Test Summary Report
-------------------
t/perfect.t (Wstat: 11 Tests: 2 Failed: 0)
Parse errors: Bad plan. You planned 3 tests but ran 2.
Files=1, Tests=2, 0 wallclock secs ( 0.03 usr 0.01 sys + 0.10 cusr 0.02 csys = 0.16 CPU)
Result: FAIL
Failed 1/1 test programs. 0/2 subtests failed.
qwurx [shmem] ~/rpms/perl/src/HTML-Tidy-1.08 >
####
use Test::More tests => 3;
####
...
isa_ok( $tidy, 'HTML::Tidy' );
...
is( scalar @returned, 0, 'Should have no messages' );
####
qwurx [shmem] ~/rpms/perl/src/HTML-Tidy-1.08 > PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" t/perfect.t
t/perfect...... All 2 subtests passed
Test Summary Report
-------------------
Files=1, Tests=2, 0 wallclock secs ( 0.01 usr 0.01 sys + 0.04 cusr 0.00 csys = 0.06 CPU)
Result: FAIL
Failed 1/1 test programs. 0/2 subtests failed.
qwurx [shmem] ~/rpms/perl/src/HTML-Tidy-1.08 >
####
qwurx [shmem] ~/rpms/perl/src/HTML-Tidy-1.08 > perl -Mblib t/perfect.t
"-T" is on the #! line, it must also be used on the command line at t/perfect.t line 1.
####
qwurx [shmem] ~/rpms/perl/src/HTML-Tidy-1.08 > perl -Mblib -T t/perfect.t
Insecure dependency in require while running with -T switch at t/perfect.t line 5.
BEGIN failed--compilation aborted at t/perfect.t line 5.
####
qwurx [shmem] ~/rpms/perl/src/HTML-Tidy-1.08 > perl -Mblib t/perfect.t
1..2
ok 1 - use HTML::Tidy;
ok 2 - The object isa HTML::Tidy
Segmentation fault
####
qwurx [shmem] ~/rpms/perl/src/HTML-Tidy-1.08 > gdb perl
GNU gdb Red Hat Linux (6.6-16.fc7rh)
Copyright (C) 2006 Free Software Foundation, Inc.
...
(no debugging symbols found)
Using host libthread_db library "/lib/libthread_db.so.1".
(gdb) run -Mblib t/perfect.t
Starting program: /usr/bin/perl -Mblib t/perfect.t
(no debugging symbols found)
...
[Thread debugging using libthread_db enabled]
[New Thread -1208416576 (LWP 29388)]
(no debugging symbols found)
(no debugging symbols found)
1..2
ok 1 - use HTML::Tidy;
ok 2 - The object isa HTML::Tidy
Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread -1208416576 (LWP 29388)]
0x00147473 in tidyBufFree () from /usr/lib/libtidy-0.99.so.0
(gdb) bt
#0 0x00147473 in tidyBufFree () from /usr/lib/libtidy-0.99.so.0
#1 0x001162e0 in XS_HTML__Tidy__tidy_messages (my_perl=0x9d9b008, cv=0x9efa564) at Tidy.xs:99
#2 0x0208833d in Perl_pp_entersub () from /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so
#3 0x0208179f in Perl_runops_standard () from /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so
#4 0x0202710e in perl_run () from /usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE/libperl.so
#5 0x0804921e in main ()
(gdb) q
The program is running. Exit anyway? (y or n) y
qwurx [shmem] ~/rpms/perl/src/HTML-Tidy-1.08 >