From 981ad6ed285c73bf4350792d420c7a560a158765 Mon Sep 17 00:00:00 2001 From: Mick Jordan <mick.jordan@oracle.com> Date: Fri, 18 Dec 2015 09:08:46 -0800 Subject: [PATCH] add missing update in previous changeset --- mx.fastr/mx_fastr_pkgtest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mx.fastr/mx_fastr_pkgtest.py b/mx.fastr/mx_fastr_pkgtest.py index 5a99124a31..71b6c99abf 100644 --- a/mx.fastr/mx_fastr_pkgtest.py +++ b/mx.fastr/mx_fastr_pkgtest.py @@ -103,7 +103,7 @@ def rpt_list_testdates(args): parser = ArgumentParser(prog='mx rpt-list-testdates') _add_common_args(parser) parser.add_argument('--pattern', action='store', help='regexp pattern for pkg match', default='.*') - parser.add_argument('--printfile', action='store_true', help='print filename containing tests') + parser.add_argument('--printdir', action='store_true', help='print directory containing tests') args = parser.parse_args(args) fastr = dict() dirlist = get_local_dirs(args.logdir) @@ -124,7 +124,7 @@ def rpt_list_testdates(args): sortedList = sorted(testdates) print pkg for resultInfo in sortedList: - if args.printfile: + if args.printdir: print ' ' + resultInfo.localdir else: print ' ' + str(resultInfo.date) -- GitLab