diff options
author | Ron Dreslinski <rdreslin@umich.edu> | 2005-03-10 14:53:34 -0500 |
---|---|---|
committer | Ron Dreslinski <rdreslin@umich.edu> | 2005-03-10 14:53:34 -0500 |
commit | aa8c9db159422a313f6dfc9a76fd827515b32126 (patch) | |
tree | b849e53e6bbdcec0c48a3030d1c4ffbb204e5c6b /test | |
parent | e51850f1d2c7c754ee11612c9b663d8af0a54400 (diff) | |
parent | de63edb7520a8ec0280b275d98aa141879243c47 (diff) | |
download | gem5-aa8c9db159422a313f6dfc9a76fd827515b32126.tar.xz |
Merge zizzer:/z/m5/Bitkeeper/m5
into zizzer.eecs.umich.edu:/.automount/zazzer/z/rdreslin/m5bk/timing_L1
--HG--
extra : convert_revision : b75a46439477b3f21333a3cc9f1721923839d14c
Diffstat (limited to 'test')
-rwxr-xr-x | test/genini.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/genini.py b/test/genini.py index 9c28ef361..f4d1575db 100755 --- a/test/genini.py +++ b/test/genini.py @@ -34,7 +34,6 @@ sys.path.append(joinpath(mypath, '../util/pbs')) sys.path.append(joinpath(mypath, '../sim/pyconfig')) from importer import AddToPath, LoadMpyFile -from m5config import * AddToPath('.') @@ -49,12 +48,14 @@ try: else: name = arg[:offset] value = arg[offset+1:] - env[name] = value + os.environ[name] = value if opt == '-I': AddToPath(arg) except getopt.GetoptError: sys.exit('Improper Usage') +from m5config import * + for arg in args: LoadMpyFile(arg) |