repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
utils
/
ABITest
/
summarize.sh
blob
3efb52bf72278c59df624176f647c953f44f0415
1
#!/bin/sh
2
3
set -eu
4
5
if
[
$#
!=
1
];
then
6
echo
"usage:
$0
<num-tests>"
7
exit
1
8
fi
9
10
for
i
in
$
(
seq
0
$1
);
do
11
if
(!
make
test
.
$i
.report
&> /
dev
/
null
);
then
12
echo
"FAIL:
$i
"
;
13
fi
;
14
done
15