From 96e97f602cb77d75d5eead3833c9a2b8eefb1fa8 Mon Sep 17 00:00:00 2001 From: dpatel Date: Mon, 28 Mar 2011 20:26:54 +0000 Subject: [PATCH] Add report format for TEST=dbg git-svn-id: http://llvm.org/svn/llvm-project/test-suite/trunk@128424 91177308-0d34-0410-b5e6-96231b3b80d8 --- TEST.dbg.report | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 TEST.dbg.report diff --git a/TEST.dbg.report b/TEST.dbg.report new file mode 100644 index 00000000..8b76bb86 --- /dev/null +++ b/TEST.dbg.report @@ -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]+)'], +); -- 2.11.4.GIT