summaryrefslogtreecommitdiff
path: root/piglit
diff options
context:
space:
mode:
authorDylan Baker <baker.dylan.c@gmail.com>2015-03-23 15:13:03 -0700
committerDylan Baker <baker.dylan.c@gmail.com>2015-03-23 15:28:20 -0700
commitf02cd7c1fc7280aaf17f4df61c2abb745adc13f0 (patch)
tree57a03abfe987940c09fa2a2cb5b11b0b59041b98 /piglit
parent57426de16862a16578cd4975a406ea60114ff69b (diff)
summary: Add an aggregate function
This summarizer can be used to aggregate a set of individual tests together into a single results file. Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com> Reviewed-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'piglit')
-rwxr-xr-xpiglit4
1 files changed, 4 insertions, 0 deletions
diff --git a/piglit b/piglit
index 53a4bb496..5ae43e90a 100755
--- a/piglit
+++ b/piglit
@@ -135,6 +135,10 @@ def main():
add_help=False,
help='generate csv from results')
csv.set_defaults(func=summary.csv)
+ aggregate = summary_parser.add_parser('aggregate',
+ add_help=False,
+ help="Aggregate incomplete piglit run.")
+ aggregate.set_defaults(func=summary.aggregate)
# Parse the known arguments (piglit run or piglit summary html for
# example), and then pass the arguments that this parser doesn't know about