automerged had issues with the options.XXXXX in stats.py

--HG--
extra : convert_revision : 44db6642c1fb46eb515acd5a6d8465859a40891a
This commit is contained in:
Ali Saidi
2005-01-14 00:05:49 -05:00
2 changed files with 12 additions and 5 deletions

View File

@@ -268,6 +268,10 @@ def commands(options, command, args):
if options.graph:
graphdata(runs, options, stat.name, stat.name, stat)
else:
if options.ticks:
print 'only displaying sample %s' % options.ticks
stat.ticks = options.ticks
if options.binned:
print 'kernel ticks'
stat.bins = 'kernel'
@@ -282,7 +286,7 @@ def commands(options, command, args):
printdata(runs, stat)
print 'interrupt ticks'
stat.bins = 'user'
stat.bins = 'interrupt'
printdata(runs, stat)
print 'total ticks'
@@ -315,7 +319,7 @@ def commands(options, command, args):
printdata(runs, stat)
print 'interrupt ticks'
stat.bins = 'user'
stat.bins = 'interrupt'
printdata(runs, stat)
print 'total ticks'
@@ -645,8 +649,9 @@ if __name__ == '__main__':
options.binned = False
options.graph = False
options.graph68 = False
options.ticks = False
opts, args = getopts(sys.argv[1:], '-6BEFGd:g:h:pr:s:u:')
opts, args = getopts(sys.argv[1:], '-6BEFGd:g:h:pr:s:u:T:')
for o,a in opts:
if o == '-6':
options.graph68 = True
@@ -672,6 +677,8 @@ if __name__ == '__main__':
options.user = a
if o == '-s':
options.system = a
if o == '-T':
options.ticks = a
if len(args) == 0:
usage()