[svn:parrot] r41923 - branches/pcc_reapply/t/codingstd

mikehh at svn.parrot.org mikehh at svn.parrot.org
Sun Oct 18 11:59:32 UTC 2009


Author: mikehh
Date: Sun Oct 18 11:59:30 2009
New Revision: 41923
URL: https://trac.parrot.org/parrot/changeset/41923

Log:
attempt to make failure messages a little clearer

Modified:
   branches/pcc_reapply/t/codingstd/c_function_docs.t

Modified: branches/pcc_reapply/t/codingstd/c_function_docs.t
==============================================================================
--- branches/pcc_reapply/t/codingstd/c_function_docs.t	Sun Oct 18 09:43:16 2009	(r41922)
+++ branches/pcc_reapply/t/codingstd/c_function_docs.t	Sun Oct 18 11:59:30 2009	(r41923)
@@ -71,7 +71,12 @@
             $missing = 'missing';
         }
         if ($missing) {
-            push @missing_docs, "$path ($missing)\n$function_decl\nWant:\n$escaped_decl\n";
+            if ($missing == 'boilerplate only') {
+                push @missing_docs, "$path ($missing)\nIn:\n$escaped_decl\n";
+            }
+            else {
+                push @missing_docs, "$path ($missing)\n$function_decl\nWant:\n$escaped_decl\n";
+            }
         }
     }
 


More information about the parrot-commits mailing list