diff options
author | Michael Forney <mforney@mforney.org> | 2021-10-26 12:26:28 -0700 |
---|---|---|
committer | Quentin Carbonneaux <quentin@c9x.me> | 2021-10-26 21:34:31 +0200 |
commit | 900805a8fe5cfa799966c4ef221524e967c44ca5 (patch) | |
tree | 7d9c300c885b401473513c5820a64f7e62800b41 /tools | |
parent | 9dec866d2cdfcd076b91b7216e74646a004efb43 (diff) | |
download | roux-900805a8fe5cfa799966c4ef221524e967c44ca5.tar.gz |
use unified diff format for test output
This make it easier to understand the differences.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/test.sh b/tools/test.sh index c02b784..c5e5b37 100755 --- a/tools/test.sh +++ b/tools/test.sh @@ -137,7 +137,7 @@ once() { if test -s $out then - $qemu $exe a b c | diff - $out + $qemu $exe a b c | diff -u - $out ret=$? reason="output" else |