[llvm-commits] [test-suite] r128424 - /test-suite/trunk/TEST.dbg.report
Devang Patel
dpatel at apple.com
Mon Mar 28 13:26:54 PDT 2011
Author: dpatel
Date: Mon Mar 28 15:26:54 2011
New Revision: 128424
URL: http://llvm.org/viewvc/llvm-project?rev=128424&view=rev
Log:
Add report format for TEST=dbg
Added:
test-suite/trunk/TEST.dbg.report
Added: test-suite/trunk/TEST.dbg.report
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/TEST.dbg.report?rev=128424&view=auto
==============================================================================
--- test-suite/trunk/TEST.dbg.report (added)
+++ test-suite/trunk/TEST.dbg.report Mon Mar 28 15:26:54 2011
@@ -0,0 +1,25 @@
+##=== TEST.dbg.report - Report description for dbg -------------*- perl -*-===##
+#
+# This file defines a report to be generated for TEST=dbg tests.
+#
+##===----------------------------------------------------------------------===##
+
+
+# These are the columns for the report. The first entry is the header for the
+# column, the second is the regex to use to match the value. Empty list create
+# separators, and closures may be put in for custom processing.
+(
+# Name
+ ["Program" , '\'([^\']+)\' Program'],
+ [],
+# Times
+ ["GCC Total" , 'GCC Total Arguments: *([0-9]+)'],
+ ["GCC Valid" , 'GCC Matching Arguments: *([0-9]+)'],
+ ["GCC Invalid" , 'GCC Not Matching Arguments: *([0-9]+)'],
+ ["GCC Missing" , 'GCC Missing Arguments: *([0-9]+)'],
+ [],
+ ["LLVM Total" , 'LLVM Total Arguments: *([0-9]+)'],
+ ["LLVM Valid" , 'LLVM Matching Arguments: *([0-9]+)'],
+ ["LLVM Invalid" , 'LLVM Not Matching Arguments: *([0-9]+)'],
+ ["LLVM Missing" , 'LLVM Missing Arguments: *([0-9]+)'],
+);
More information about the llvm-commits
mailing list