repo.or.cz
/
valgrind.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
regtest: add a fdleak filter for write on write on linux arm64
[valgrind.git]
/
auxprogs
/
posixtestsuite-1.5.1-diff-results
blob
a7aada721361b4da150809ad6a93e9a7e9caa8a3
1
#!/bin/sh
2
3
usage
()
4
{
5
cat
<<EOF
6
7
Usage:
$0
result_file_1 result_file_2
8
9
EOF
10
}
11
12
if
[
$#
!=
2
];
then
13
usage
;
14
exit
1
;
15
else
16
echo
$1 $2
;
17
rm
-f
tmptmp_1 tmptmp_2
;
18
grep
-v
GRIND
=
$1
>
tmptmp_1
;
19
grep
-v
GRIND
=
$2
>
tmptmp_2
;
20
diff
-U2
tmptmp_1 tmptmp_2
;
21
fi