projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
66a9697
)
Only update stderr, stdout, m5stats.txt, and config.* on update_ref,
author
Steve Reinhardt
<stever@eecs.umich.edu>
Tue, 5 Dec 2006 00:05:09 +0000
(19:05 -0500)
committer
Steve Reinhardt
<stever@eecs.umich.edu>
Tue, 5 Dec 2006 00:05:09 +0000
(19:05 -0500)
since we don't know which of the other files are outputs and which
are inputs.
--HG--
extra : convert_revision :
b038bd15930721ab9fceb0a18ab5c895aacb5309
tests/SConscript
patch
|
blob
|
history
diff --git
a/tests/SConscript
b/tests/SConscript
index 8560363f917c36072fa0e08e4ed8b8f8e67fbbd3..8c9029be609c0c4fa0ea2cfd6bd5b5b74515dc7d 100644
(file)
--- a/
tests/SConscript
+++ b/
tests/SConscript
@@
-114,11
+114,7
@@
def update_test(target, source, env):
src_dir = str(source[1].get_dir())
dest_files = os.listdir(dest_dir)
src_files = os.listdir(src_dir)
- # Exclude status & diff outputs
- for f in ('outdiff', 'statsdiff', 'status'):
- if f in src_files:
- src_files.remove(f)
- for f in src_files:
+ for f in ('stdout', 'stderr', 'm5stats.txt', 'config.ini', 'config.out'):
if f in dest_files:
print " Replacing file", f
dest_files.remove(f)