repo.or.cz
/
rarfile.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cleanup check-psw, change api
[rarfile.git]
/
test
/
run_dump_all.sh
blob
d5c8990dccef78e7383cb2e3ed6d048ee2fc56db
1
#! /bin/sh
2
3
JAVA_OPTIONS
=
"-Dpython.path=`pwd`/.."
4
export
JAVA_OPTIONS
5
6
plist
=
"python3.7 python3.8 python3.9 python3.10 python3.11 python3.12 pypy3.9 pypy3.10"
7
8
result
=
0
9
for
py
in
$plist
;
do
10
if
which
$py
> /
dev
/
null
;
then
11
.
/
test
/
run_dump.sh
"
$py
"
"
$py
"
|| result
=
1
12
echo
""
13
else
14
echo
$py
not available
15
echo
""
16
fi
17
done
18