summaryrefslogtreecommitdiff
path: root/util/stats
diff options
context:
space:
mode:
authorNathan Binkert <binkertn@umich.edu>2005-10-18 19:17:36 -0400
committerNathan Binkert <binkertn@umich.edu>2005-10-18 19:17:36 -0400
commitce5f326f11a3032a710074e65bba06246e069c6b (patch)
tree66c15eb8c5256d5e670f953ddc2ee107fe0a5de4 /util/stats
parenta81c03737addc8e9a9b00cde0354e6c0ab4561af (diff)
downloadgem5-ce5f326f11a3032a710074e65bba06246e069c6b.tar.xz
Default jobfile for stats
util/stats/stats.py: Make the default jobfile Test.py in the current directory add the -J flag to tell it not to use a jobfile --HG-- extra : convert_revision : 5cf5bb2f32ed9c9701a94eabc9b2a538581acf94
Diffstat (limited to 'util/stats')
-rwxr-xr-xutil/stats/stats.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/util/stats/stats.py b/util/stats/stats.py
index c53d77d54..af9ae5575 100755
--- a/util/stats/stats.py
+++ b/util/stats/stats.py
@@ -465,10 +465,11 @@ if __name__ == '__main__':
options.graph = False
options.ticks = False
options.printmode = 'G'
+ jobfilename = 'Test.py'
options.jobfile = None
options.all = False
- opts, args = getopts(sys.argv[1:], '-BEFG:ad:g:h:j:pr:s:u:T:')
+ opts, args = getopts(sys.argv[1:], '-BEFG:Jad:g:h:j:pr:s:u:T:')
for o,a in opts:
if o == '-B':
options.binned = True
@@ -487,8 +488,10 @@ if __name__ == '__main__':
options.graphdir = a
if o == '-h':
options.host = a
+ if o == '-J':
+ jobfilename = None
if o == '-j':
- options.jobfile = JobFile(a)
+ jobfilename = a
if o == '-p':
options.passwd = getpass.getpass()
if o == '-r':
@@ -500,7 +503,8 @@ if __name__ == '__main__':
if o == '-T':
options.ticks = a
- if options.jobfile:
+ if jobfilename:
+ options.jobfile = JobFile(jobfilename)
if not options.host:
options.host = options.jobfile.dbhost
if not options.db: