# New Ticket Created by  Andy Dougherty 
# Please include the string:  [perl #38978]
# in the subject line of all future correspondence about this issue. 
# <URL: https://rt.perl.org/rt3/Ticket/Display.html?id=38978 >


The following patch fixes what I presume is a typo in t/pmc/file.t.  
Previously, I expect the only reason it was passing for some folks is that 
unused I registers are somehow automatically set to 0 on Linux/x86.

--- parrot-current/t/pmc/file.t Sat Feb 25 00:32:34 2006
+++ parrot-andy/t/pmc/file.t    Tue Apr 25 11:29:22 2006
@@ -84,7 +84,7 @@
 
         $S1 = "xpto"
         $I1 = $P1."is_file"($S1)
-        $I1 = !I1
+        $I1 = !$I1
 
         if $I1 goto ok1
         print "not "


-- 
    Andy Dougherty              [EMAIL PROTECTED]

Reply via email to