[svn:parrot] r49185 - trunk/t/codingstd

mikehh at svn.parrot.org mikehh at svn.parrot.org
Mon Sep 20 20:53:52 UTC 2010


Author: mikehh
Date: Mon Sep 20 20:53:52 2010
New Revision: 49185
URL: https://trac.parrot.org/parrot/changeset/49185

Log:
modify t/codingstd/c_macro_args.t so that it ignores unwrapped _hash
in include/parrot/hash.h - it already ignores unwapped _code argument

Modified:
   trunk/t/codingstd/c_macro_args.t

Modified: trunk/t/codingstd/c_macro_args.t
==============================================================================
--- trunk/t/codingstd/c_macro_args.t	Mon Sep 20 20:14:14 2010	(r49184)
+++ trunk/t/codingstd/c_macro_args.t	Mon Sep 20 20:53:52 2010	(r49185)
@@ -62,6 +62,8 @@
 
                     # skip args that are code blocks
                     next if $arg eq '_code';
+                    # skip other problem with _hash
+                    next if $arg eq '_hash';
 
                     # eliminate any properly formed usage of the macro arg
                     $definition =~ s/\Q($arg)//g;


More information about the parrot-commits mailing list