forked from intel/llvm-test-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TEST.dbg.report
25 lines (23 loc) · 998 Bytes
/
TEST.dbg.report
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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]+)'],
);