projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c538436
)
Fix command for new options processing.
author
Steve Reinhardt
<stever@eecs.umich.edu>
Mon, 28 Aug 2006 16:48:31 +0000
(09:48 -0700)
committer
Steve Reinhardt
<stever@eecs.umich.edu>
Mon, 28 Aug 2006 16:48:31 +0000
(09:48 -0700)
--HG--
extra : convert_revision :
49eee05a6deddae378013f7c2117eabe621b69d9
util/tracediff
patch
|
blob
|
history
diff --git
a/util/tracediff
b/util/tracediff
index a7efc260d553dab1ff1cccbbf54b6c8b722f2d4b..f2377a9993c6ba5f92fe13a3cd31a847987685f0 100755
(executable)
--- a/
util/tracediff
+++ b/
util/tracediff
@@
-58,8
+58,8
@@
$dir2 = "tracediff-$$-2";
mkdir($dir1) or die "Can't create dir $dir1\n";
mkdir($dir2) or die "Can't create dir $dir2\n";
-$cmd1 = "$sim1
$simargs -d $dir1
2>&1 |";
-$cmd2 = "$sim2
$simargs -d $dir2
2>&1 |";
+$cmd1 = "$sim1
-d $dir1 $simargs
2>&1 |";
+$cmd2 = "$sim2
-d $dir2 $simargs
2>&1 |";
# This only works if you have rundiff in your path. I just edit it
# with an explicit path if necessary.