diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2005-02-03 20:50:07 -0500 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2005-02-03 20:50:07 -0500 |
commit | 6dd5509490c5841d32023cb3de25a6f4ee2a7ab9 (patch) | |
tree | 2ed05b1ddb1a3d0cf6a490ab4695d375bd31d272 /util | |
parent | 52403a5ddf1e02f53d0624254f41e27e3914df29 (diff) | |
parent | 06bee6397d2361a025a354c2ef3e75eeac46343a (diff) | |
download | gem5-6dd5509490c5841d32023cb3de25a6f4ee2a7ab9.tar.xz |
Merge zizzer.eecs.umich.edu:/z/m5/Bitkeeper/m5
into zizzer.eecs.umich.edu:/z/stever/bk/m5
--HG--
extra : convert_revision : aea0708fa6684e3203c03f17e8ae6ae87e893f04
Diffstat (limited to 'util')
-rwxr-xr-x | util/tracediff | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/tracediff b/util/tracediff index a95ce8b82..402abbe55 100755 --- a/util/tracediff +++ b/util/tracediff @@ -1,5 +1,5 @@ #! /usr/bin/env perl -# Copyright (c) 2003-2004 The Regents of The University of Michigan +# Copyright (c) 2003-2005 The Regents of The University of Michigan # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -53,7 +53,7 @@ $simargs = '"' . join('" "', @ARGV) . '"'; # Redirect config output to cout so that gets diffed too (in case # that's the source of the problem). -$simargs += " --Universe:config_output_file=cout"; +$simargs .= " --root:config_output_file=cout"; $cmd1 = "$sim1 $simargs --stats:text_file=tracediff-$$-1.stats 2>&1 |"; $cmd2 = "$sim2 $simargs --stats:text_file=tracediff-$$-2.stats 2>&1 |"; |