<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -5,6 +5,10 @@ Revision history for autodie
         * TEST: hints.t produces less debugging output when testing
           the Perl core.  (Thanks to Jerry D. Hedden)
 
+        * TEST: hints.t no longer spuriously fails when checking
+          the return values from File::Copy under Windows before
+          Perl 5.10.1.  (Thanks to Curtis Jewell)
+
 2.03  Wed Jul  1 15:39:16 AUSEST 2009
 
         * BUGFIX: Stopped blog_hints.t from booching under Perl</diff>
      <filename>Changes</filename>
    </modified>
    <modified>
      <diff>@@ -61,7 +61,14 @@ isnt(&quot;$@&quot;, &quot;&quot;, &quot;Copying in scalar context should throw an error.&quot;);
 isa_ok($@, &quot;autodie::exception&quot;);
 
 is($@-&gt;function, &quot;File::Copy::copy&quot;, &quot;Function should be original name&quot;);
-is($@-&gt;return, 0, &quot;File::Copy returns zero on failure&quot;);
+
+SKIP: {
+    skip(&quot;File::Copy is weird on Win32 before 5.10.1&quot;, 1)
+        if ( ! PERL5101 and $^O eq &quot;MSWin32&quot; );
+
+    is($@-&gt;return, 0, &quot;File::Copy returns zero on failure&quot;);
+}
+
 is($@-&gt;context, &quot;scalar&quot;, &quot;File::Copy called in scalar context&quot;);
 
 # List context test.
@@ -76,7 +83,13 @@ isnt(&quot;$@&quot;, &quot;&quot;, &quot;Copying in list context should throw an error.&quot;);
 isa_ok($@, &quot;autodie::exception&quot;);
 
 is($@-&gt;function, &quot;File::Copy::copy&quot;, &quot;Function should be original name&quot;);
-is_deeply($@-&gt;return, [0], &quot;File::Copy returns zero on failure&quot;);
+
+SKIP: {
+    skip(&quot;File::Copy is weird on Win32 before 5.10.1&quot;, 1)
+        if ( ! PERL5101 and $^O eq &quot;MSWin32&quot; );
+
+    is_deeply($@-&gt;return, [0], &quot;File::Copy returns zero on failure&quot;);
+}
 is($@-&gt;context, &quot;list&quot;, &quot;File::Copy called in list context&quot;);
 
 # Tests on loaded funcs.</diff>
      <filename>t/hints.t</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>a72aad70935ed7c385395fa3c792de40d54a79c1</id>
    </parent>
  </parents>
  <author>
    <name>Paul Fenwick</name>
    <email>pjf@perltraining.com.au</email>
  </author>
  <url>http://github.com/pfenwick/autodie/commit/fe193f2af05c902063ed73abf84b1d5740b8d193</url>
  <id>fe193f2af05c902063ed73abf84b1d5740b8d193</id>
  <committed-date>2009-07-01T21:49:32-07:00</committed-date>
  <authored-date>2009-07-01T21:49:32-07:00</authored-date>
  <message>Remove spurious failures from hints.t/File::Copy under Win32 and &lt; 5.10.1

Thanks to Curtis Jewell for spotting this.</message>
  <tree>674e50b491b30bac43cce8e444de92ed58ffa3fb</tree>
  <committer>
    <name>Paul Fenwick</name>
    <email>pjf@perltraining.com.au</email>
  </committer>
</commit>
