Help for this page

Select Code to Download


  1. or download this
    qwurx [shmem] ~/rpms/perl/src/HTML-Tidy-1.08 > make test
    PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" "test_h
    +arness(0, 'blib/lib', 'blib/arch')" t/*.t
    ...
    Result: FAIL
    Failed 2/20 test programs. 0/78 subtests failed.
    make: *** [test_dynamic] Error 255
    
  2. or download this
    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 
    ...
    Result: FAIL
    Failed 1/1 test programs. 0/2 subtests failed.
    qwurx [shmem] ~/rpms/perl/src/HTML-Tidy-1.08 >
    
  3. or download this
    use Test::More tests => 3;
    
  4. or download this
    ...
    isa_ok( $tidy, 'HTML::Tidy' );
    ...
    is( scalar @returned, 0, 'Should have no messages' );
    
  5. or download this
    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 
    ...
    Result: FAIL
    Failed 1/1 test programs. 0/2 subtests failed.
    qwurx [shmem] ~/rpms/perl/src/HTML-Tidy-1.08 >
    
  6. or download this
    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.
    
  7. or download this
    qwurx [shmem] ~/rpms/perl/src/HTML-Tidy-1.08 > perl -Mblib -T t/perfec
    +t.t 
    Insecure dependency in require while running with -T switch at t/perfe
    +ct.t line 5.
    BEGIN failed--compilation aborted at t/perfect.t line 5.
    
  8. or download this
    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
    
  9. or download this
    qwurx [shmem] ~/rpms/perl/src/HTML-Tidy-1.08 > gdb perl
    GNU gdb Red Hat Linux (6.6-16.fc7rh)
    ...
    (gdb) q
    The program is running.  Exit anyway? (y or n) y
    qwurx [shmem] ~/rpms/perl/src/HTML-Tidy-1.08 >