diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-03-10 23:44:01 +0100 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-03-10 23:44:01 +0100 |
| commit | 56be2bcb517d3830e8d43265faf511623845b5e2 (patch) | |
| tree | aa7327447f12cb39db98772c92b0c26cc963b18a | |
| parent | 1f658ddc001f2aa101be8441dad7a6bde7ba6da4 (diff) | |
| download | allocbench-56be2bcb517d3830e8d43265faf511623845b5e2.tar.gz allocbench-56be2bcb517d3830e8d43265faf511623845b5e2.zip | |
fix time recording
| -rwxr-xr-x | bench.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -110,7 +110,7 @@ def main(): else: starttime = datetime.datetime.now().isoformat() # strip seconds from string - starttime = start_time[:start_time.rfind(':')] + starttime = starttime[:starttime.rfind(':')] src.globalvars.facts["starttime"] = starttime # Create result directory if we save or summarize results |
