repo.or.cz
/
sparrow.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
beginning of start up script
[sparrow.git]
/
dSFMT
/
check.sh
blob
ef56d57b980b60da191a7d59333ff82d82c0eb28
1
#!/bin/sh
2
prefix
=
$1
3
tmp
=
tmp.$$
4
exps
=
"521 1279 2203 4253 11213 19937 44497 86243 132049 216091"
5
for
mexp
in
$exps
;
do
6
compare
=
dSFMT.
${mexp}
.out.txt
7
command
=
${prefix}
-M
${mexp}
8
.
/
$command
-v
>
$tmp
9
if
diff
-q -w
$tmp $compare
;
then
10
echo
$command
output check OK
11
rm
-f
$tmp
12
else
13
echo
$command
output check NG
!
14
rm
-f
$tmp
15
exit
1
16
fi
17
done
18
exit
0