summaryrefslogtreecommitdiff
path: root/piglit
diff options
context:
space:
mode:
authorThomas Wood <thomas.wood@intel.com>2014-09-24 12:23:24 +0100
committerThomas Wood <thomas.wood@intel.com>2014-10-01 16:28:27 +0100
commit73595a9c580026e7f33853c34b8fe98884990597 (patch)
tree68256ce1beafc1d5adcde364b5234a2e6fa2d22b /piglit
parent1a36e7fd6f162f6056236d83474d099033d1b255 (diff)
summary: add a csv output option
v2: small style fix (Dylan Baker) Signed-off-by: Thomas Wood <thomas.wood@intel.com> Reviewed-by: Dylan Baker <baker.dylan.c@gmail.com>
Diffstat (limited to 'piglit')
-rwxr-xr-xpiglit4
1 files changed, 4 insertions, 0 deletions
diff --git a/piglit b/piglit
index 8538f819d..c1c2520a6 100755
--- a/piglit
+++ b/piglit
@@ -135,6 +135,10 @@ def main():
add_help=False,
help='generate junit xml from results')
junit.set_defaults(func=summary.junit)
+ csv = summary_parser.add_parser('csv',
+ add_help=False,
+ help='generate csv from results')
+ csv.set_defaults(func=summary.csv)
# Parse the known arguments (piglit run or piglit summary html for
# example), and then pass the arguments that this parser doesn't know about