tests: print if output files match
authorSteve Reinhardt <steve.reinhardt@amd.com>
Wed, 22 Sep 2010 06:07:34 +0000 (23:07 -0700)
committerSteve Reinhardt <steve.reinhardt@amd.com>
Wed, 22 Sep 2010 06:07:34 +0000 (23:07 -0700)
Add '-s' flag to diff command generating outdiff
file so we have positive confirmation when
outputs match.

tests/SConscript

index 5d7348917a6ff3cfcee13eabfdda64a0dc024091..54e911624a82f7de5075c15ef3d4d75aed4e239f 100644 (file)
@@ -108,7 +108,7 @@ def run_test(target, source, env):
         # Run diff on output & ref directories to find differences.
         # Exclude the stats file since we will use diff-out on that.
         outdiff = os.path.join(tgt_dir, 'outdiff')
-        diffcmd = 'diff -ubr %s ${SOURCES[2].dir} %s > %s' \
+        diffcmd = 'diff -ubrs %s ${SOURCES[2].dir} %s > %s' \
                   % (output_ignore_args, tgt_dir, outdiff)
         env.Execute(env.subst(diffcmd, target=target, source=source))
         print "===== Output differences ====="