# New Ticket Created by Will Coleda # Please include the string: [perl #50802] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=50802 >
the pir_code_coda.t is now checking both .pir files *and* .t files that claim to be PIR. The test for .t files is basically "does the shebang contain parrot" AND "does the shebang NOT contain a .pir or .pbc file?" (the second condition to avoid the one or two cases where this is used to interpret the file in another language.) However, some files are specifying this shebang improperly: compilers/nqp/t/01-literals.t, for example, has a shebang of: #!./parrot but contains a test file written in NQP, not PIR. Before we can re-enable the pir_code_coda test, these files need to be updated to have a proper shebang. This may involve updated the aforementioned test found in Parrot::Distribution->is_pir() -- Will "Coke" Coleda