# New Ticket Created by Mark Grimes
# Please include the string: [perl #49846]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=49846 >
It appears that "runtime/parrot/include/test_more.pir" does not export
'skip'. I'm not sure if this was done on purpose, but I have not seen
any issues when running tests with it exported.
The attached (simple) patch fixes it.
-Mark
mgrimes (at) cpan [dot] org
Index: runtime/parrot/include/test_more.pir
===================================================================
--- runtime/parrot/include/test_more.pir (revision 24854)
+++ runtime/parrot/include/test_more.pir (working copy)
@@ -17,7 +17,7 @@
.local pmc exports, curr_namespace, test_namespace
curr_namespace = get_namespace
test_namespace = get_namespace [ 'Test'; 'More' ]
- exports = split " ", "plan diag ok is is_deeply like isa_ok"
+ exports = split " ", "plan diag ok is is_deeply like isa_ok skip"
test_namespace."export_to"(curr_namespace, exports)