I came across the same problem while building Archive::Tar on Win2K, Visual Studio 6.

I fixed the same line in _get_handle, but as:
$fh = Compress::Zlib::gzopen ($fh, $mode) or &_drat;
(since gzopen will actually call gzdopen for file handles)

This brought me to the same place as you, failing on test 6.

At this point, the dummy.tar file is produced--though it should really be named dummy.tar.gz. I was successfully able to unzip and view it in WinZip.

BUT, after looking at the code for Tar.pm... it appears the error is that some subs allow you to specify a $compress flag, while others don't. The result (as I believe) is that get_content doesn't tell _get_handle that the file is compressed. So, _get_handle returns undef, which breaks the code.

I looked on CPAN, and noticed that this module is only in its alpha stages though--so I guess you can just wait and hope that the beta is better. :-)


print(map(lc(chr),split(6,qw/99672682673683684689632658645641610607/)));

In reply to Re: Archive::Tar, TK failures for 5.8.0RC1 on Win32 by csotzing
in thread Archive::Tar, TK failures for 5.8.0RC1 on Win32 by alien_life_form

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.