diff options
author | Lisa Hsu <hsul@eecs.umich.edu> | 2006-10-30 14:19:16 -0500 |
---|---|---|
committer | Lisa Hsu <hsul@eecs.umich.edu> | 2006-10-30 14:19:16 -0500 |
commit | fe2698c435ef8f37273e60f1cc7d70b95b4aa3d5 (patch) | |
tree | e761f9fd6e3d5eb313fd8029d8960fd010bad2ef /configs | |
parent | 13cbd4e94b7d65321d458ca70aeddbd6c9922538 (diff) | |
download | gem5-fe2698c435ef8f37273e60f1cc7d70b95b4aa3d5.tar.xz |
ensure that there is a "/" between the cptdir and the cpt.%d.
--HG--
extra : convert_revision : 9aed7c3aecad10b039f3cfb26e04a7950be6bed1
Diffstat (limited to 'configs')
-rw-r--r-- | configs/common/Simulation.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configs/common/Simulation.py b/configs/common/Simulation.py index 899a291fc..a2d045a5e 100644 --- a/configs/common/Simulation.py +++ b/configs/common/Simulation.py @@ -135,7 +135,7 @@ def run(options, root, testsys): exit_event = m5.simulate(when - m5.curTick()) if exit_event.getCause() == "simulate() limit reached": - m5.checkpoint(root, cptdir + "cpt.%d") + m5.checkpoint(root, "/".join([cptdir,"cpt.%d"])) num_checkpoints += 1 sim_ticks = when @@ -151,14 +151,14 @@ def run(options, root, testsys): while exit_event.getCause() == "checkpoint": exit_event = m5.simulate(sim_ticks - m5.curTick()) if exit_event.getCause() == "simulate() limit reached": - m5.checkpoint(root, cptdir + "cpt.%d") + m5.checkpoint(root, "/".join([cptdir,"cpt.%d"])) num_checkpoints += 1 else: #no checkpoints being taken via this script exit_event = m5.simulate(maxtick) while exit_event.getCause() == "checkpoint": - m5.checkpoint(root, cptdir + "cpt.%d") + m5.checkpoint(root, "/".join([cptdir,"cpt.%d"])) num_checkpoints += 1 if num_checkpoints == max_checkpoints: exit_cause = "maximum %d checkpoints dropped" % max_checkpoints |