diff options
Diffstat (limited to 'tests/SConscript')
-rw-r--r-- | tests/SConscript | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/SConscript b/tests/SConscript index 8720939de..d5968d3e3 100644 --- a/tests/SConscript +++ b/tests/SConscript @@ -61,8 +61,9 @@ def check_test(target, source, env): # Exclude m5stats.txt since we will use diff-out on that. Execute(env.subst('diff -ubr ${SOURCES[0].dir} ${SOURCES[1].dir} ' + '-I "^command line:" ' + # for stdout file - '-I "^M5 compiled on" ' + # for stderr file - '-I "^M5 simulation started" ' + # for stderr file + '-I "^M5 compiled " ' + # for stderr file + '-I "^M5 started " ' + # for stderr file + '-I "^M5 executing on " ' + # for stderr file '-I "^Simulation complete at" ' + # for stderr file '-I "^Listening for" ' + # for stderr file '--exclude=m5stats.txt --exclude=SCCS ' + |