diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2007-09-12 15:27:15 -0400 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2007-09-12 15:27:15 -0400 |
commit | 136cb057d405449593f54c38bdd40046d70e587f (patch) | |
tree | 2a1b1d53e73dd165201c4985f54f8a7eaba892c9 /configs/common | |
parent | 6f9ad931cc1c63da925b6372513282d2aa8dc84c (diff) | |
download | gem5-136cb057d405449593f54c38bdd40046d70e587f.tar.xz |
Checkpointing: Fix directory regex
--HG--
extra : convert_revision : 4d3958eda66209373249e54e7deadd1a7442e828
Diffstat (limited to 'configs/common')
-rw-r--r-- | configs/common/Simulation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/common/Simulation.py b/configs/common/Simulation.py index 53c2956a2..c65597367 100644 --- a/configs/common/Simulation.py +++ b/configs/common/Simulation.py @@ -130,7 +130,7 @@ def run(options, root, testsys, cpu_class): m5.panic("checkpoint dir %s does not exist!" % cptdir) dirs = listdir(cptdir) - expr = re.compile('cpt.([0-9]*)') + expr = re.compile('cpt\.([0-9]*)') cpts = [] for dir in dirs: match = expr.match(dir) |